Belle II Software  release-05-02-19
BaseTrackRelationFilter.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 CDCTrack;
23 
24  // Guard to prevent repeated instantiations
25  extern template class RelationFilter<const CDCTrack>;
26 
28  class BaseTrackRelationFilter : public RelationFilter<const CDCTrack> {
29 
30  public:
32  BaseTrackRelationFilter();
33 
35  ~BaseTrackRelationFilter();
36 
38  std::vector<const CDCTrack*> getPossibleTos(
39  const CDCTrack* from,
40  const std::vector<const CDCTrack*>& tracks) const final;
41  };
42  }
44 }
Belle2::TrackFindingCDC::CDCTrack
Class representing a sequence of three dimensional reconstructed hits.
Definition: CDCTrack.h:51
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19