Belle II Software  release-05-01-25
BaseSegmentPairRelationFilter.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/base/RelationFilter.dcl.h>
13 
14 #include <vector>
15 
16 namespace Belle2 {
21  namespace TrackFindingCDC {
22  class CDCSegmentPair;
23 
24  // Guard to prevent repeated instantiations
25  extern template class RelationFilter<const CDCSegmentPair>;
26 
28  class BaseSegmentPairRelationFilter : public RelationFilter<const CDCSegmentPair> {
29 
30  public:
32  BaseSegmentPairRelationFilter();
33 
35  ~BaseSegmentPairRelationFilter();
36 
38  std::vector<const CDCSegmentPair*> getPossibleTos(
39  const CDCSegmentPair* from,
40  const std::vector<const CDCSegmentPair*>& segmentPairs) const final;
41  };
42  }
44 }
Belle2::TrackFindingCDC::CDCSegmentPair
Class representing a pair of one reconstructed axial segement and one stereo segment in adjacent supe...
Definition: CDCSegmentPair.h:44
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19