Belle II Software development
MVAFacetFilter.h
1/**************************************************************************
2 * basf2 (Belle II Analysis Software Framework) *
3 * Author: The Belle II Collaboration *
4 * *
5 * See git log for contributors and copyright holders. *
6 * This file is licensed under LGPL-3.0, see LICENSE.md. *
7 **************************************************************************/
8#pragma once
9
10#include <tracking/trackFindingCDC/filters/facet/BaseFacetFilter.h>
11
12#include <tracking/trackFindingCDC/filters/facet/BasicFacetVarSet.h>
13#include <tracking/trackFindingCDC/filters/facet/Chi2FacetFilter.h>
14
15#include <tracking/trackFindingCDC/filters/base/MVAFilter.dcl.h>
16
17#include <tracking/trackFindingCDC/filters/base/FilterVarSet.dcl.h>
18
19#include <tracking/trackFindingCDC/varsets/VariadicUnionVarSet.h>
20
21namespace Belle2 {
26 namespace TrackFindingCDC {
27 class CDCFacet;
28
30 using MVAFacetVarSet = VariadicUnionVarSet<BasicFacetVarSet,
32
34 class MVAFacetFilter: public MVA<BaseFacetFilter> {
35
36 public:
39
40 public:
43
48 Weight predict(const CDCFacet& facet) final;
49 };
50 }
52}
Class to compute floating point variables from a facet which can be recorded as a flat TNtuple or ser...
Class representing a triple of neighboring oriented wire with additional trajectory information.
Definition CDCFacet.h:32
Class to compute floating point variables from a filter response which can be recorded as a flat TNtu...
MVAFacetFilter()
Constructor initialising the MVAFilter with standard training name for this filter.
MVA< BaseFacetFilter > Super
Type of the base class.
Weight predict(const CDCFacet &facet) final
Main filter method returning the weight of the facet.
MVA(std::unique_ptr< AVarSet > varSet, const std::string &identifier="", double defaultCut=NAN, const std::string &dbObjectName="")
Class that accommodates many variable sets and presents them as on set of variables.
Abstract base class for different kinds of events.