Belle II Software  release-06-01-15
MVARealisticAxialSegmentPairFilter.cc
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 #include <tracking/trackFindingCDC/filters/axialSegmentPair/MVARealisticAxialSegmentPairFilter.h>
9 
10 #include <tracking/trackFindingCDC/filters/base/MVAFilter.icc.h>
11 
12 using namespace Belle2;
13 using namespace TrackFindingCDC;
14 
16  : Super(std::make_unique<VarSet>(),
17  "trackfindingcdc_RealisticAxialSegmentPairFilter",
18  0.49)
19 {
20  this->addProcessingSignalListener(&m_feasibleAxialSegmentPairFilter);
21 }
22 
24 {
25  double isFeasibleWeight = m_feasibleAxialSegmentPairFilter(axialSegmentPair);
26  if (std::isnan(isFeasibleWeight)) {
27  return NAN;
28  } else {
29  return Super::operator()(axialSegmentPair);
30  }
31 }
Class representing a pair of reconstructed axial segements in adjacent superlayer.
MVARealisticAxialSegmentPairFilter()
Constructor initialising the MVAFilter with standard training name for this filter.
MVAFeasibleAxialSegmentPairFilter m_feasibleAxialSegmentPairFilter
Feasibility filter applied first before invoking the main cut.
Weight operator()(const CDCAxialSegmentPair &axialSegmentPair) override
Function to object for its signalness.
Weight operator()(const Object &obj) override
Function to object for its signalness.
Definition: MVAFilter.icc.h:81
Class that accomodates many variable sets and presents them as on set of variables.
Abstract base class for different kinds of events.