Belle II Software  release-05-01-25
FitlessSegmentPairFilter.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2014 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Oliver Frost *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 #pragma once
11 
12 #include <tracking/trackFindingCDC/filters/segmentPair/SkimmedHitGapSegmentPairVarSet.h>
13 
14 #include <tracking/trackFindingCDC/filters/base/FilterOnVarSet.dcl.h>
15 
16 namespace Belle2 {
21  namespace TrackFindingCDC {
22  class CDCSegmentPair;
23 
25  class FitlessSegmentPairFilter : public FilterOnVarSet<SkimmedHitGapSegmentPairVarSet> {
26 
27  private:
29  using Super = FilterOnVarSet<SkimmedHitGapSegmentPairVarSet>;
30 
31  public:
33  Weight operator()(const CDCSegmentPair& segmentPair) final;
34  };
35  }
37 }
Belle2::TrackFindingCDC::CDCSegmentPair
Class representing a pair of one reconstructed axial segement and one stereo segment in adjacent supe...
Definition: CDCSegmentPair.h:44
Belle2::TrackFindingCDC::FitlessSegmentPairFilter::Super
FilterOnVarSet< SkimmedHitGapSegmentPairVarSet > Super
Type of the base class.
Definition: FitlessSegmentPairFilter.h:37
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::TrackFindingCDC::FitlessSegmentPairFilter::operator()
Weight operator()(const CDCSegmentPair &segmentPair) final
Checks if a pair of segments is a good combination.
Definition: FitlessSegmentPairFilter.cc:22