Belle II Software  release-05-01-25
BaseSegmentTripleRelationFilter.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2013 - 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 CDCSegmentTriple;
23 
24  // Guard to prevent repeated instantiations
25  extern template class RelationFilter<const CDCSegmentTriple>;
26 
28  class BaseSegmentTripleRelationFilter : public RelationFilter<const CDCSegmentTriple> {
29 
30  public:
32  BaseSegmentTripleRelationFilter();
33 
35  ~BaseSegmentTripleRelationFilter();
36 
38  std::vector<const CDCSegmentTriple*> getPossibleTos(
39  const CDCSegmentTriple* from,
40  const std::vector<const CDCSegmentTriple*>& segmentTriples) const final;
41  };
42  }
44 }
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::TrackFindingCDC::CDCSegmentTriple
Class representing a triple of reconstructed segements in adjacent superlayer.
Definition: CDCSegmentTriple.h:42