Belle II Software  release-05-01-25
BaseFacetRelationFilter.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 CDCFacet;
23 
24  // Guard to prevent repeated instantiations
25  extern template class RelationFilter<const CDCFacet>;
26 
28  class BaseFacetRelationFilter : public RelationFilter<const CDCFacet> {
29 
30  public:
32  BaseFacetRelationFilter();
33 
35  ~BaseFacetRelationFilter();
36 
41  std::vector<const CDCFacet*> getPossibleTos(
42  const CDCFacet* from,
43  const std::vector<const CDCFacet*>& facets) const final;
44  };
45  }
47 }
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::TrackFindingCDC::CDCFacet
Class representing a triple of neighboring oriented wire with additional trajectory information.
Definition: CDCFacet.h:42