Belle II Software  release-05-01-25
UnionRecordingAxialSegmentPairFilter.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2015 - 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/axialSegmentPair/AxialSegmentPairFilterFactory.h>
13 
14 #include <tracking/trackFindingCDC/filters/base/UnionRecordingFilter.dcl.h>
15 
16 #include <vector>
17 #include <string>
18 #include <memory>
19 
20 namespace Belle2 {
25  namespace TrackFindingCDC {
26  class CDCAxialSegmentPair;
27 
28  extern template class TrackFindingCDC::UnionRecordingFilter<AxialSegmentPairFilterFactory>;
29 
31  class UnionRecordingAxialSegmentPairFilter: public UnionRecordingFilter<AxialSegmentPairFilterFactory> {
32 
33  private:
35  using Super = UnionRecordingFilter<AxialSegmentPairFilterFactory>;
36 
37  public:
39  std::vector<std::string> getValidVarSetNames() const final;
40 
42  std::unique_ptr<BaseVarSet<CDCAxialSegmentPair> >
43  createVarSet(const std::string& name) const final;
44  };
45  }
47 }
Belle2::TrackFindingCDC::CDCAxialSegmentPair
Class representing a pair of reconstructed axial segements in adjacent superlayer.
Definition: CDCAxialSegmentPair.h:41
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::TrackFindingCDC::BaseVarSet
Generic class that generates some named float values from a given object.
Definition: BaseVarSet.h:43