Belle II Software  release-08-01-10
AxialTrackFinderModules.h
1 /**************************************************************************
2  * basf2 (Belle II Analysis Software Framework) *
3  * Author: The Belle II Collaboration *
4  * *
5  * See git log for contributors and copyright holders. *
6  * This file is licensed under LGPL-3.0, see LICENSE.md. *
7  **************************************************************************/
8 #pragma once
9 
10 #include <tracking/trackFindingCDC/findlets/combined/AxialTrackFinderLegendre.h>
11 #include <tracking/trackFindingCDC/findlets/combined/AxialTrackFinderHough.h>
12 
13 #include <tracking/trackFindingCDC/findlets/minimal/AxialTrackCreatorSegmentHough.h>
14 #include <tracking/trackFindingCDC/findlets/minimal/AxialTrackCreatorMCTruth.h>
15 
16 #include <tracking/trackFindingCDC/findlets/combined/MonopoleAxialTrackFinderLegendre.h>
17 #include <tracking/trackFindingCDC/findlets/combined/AxialStraightTrackFinder.h>
18 
19 #include <tracking/trackFindingCDC/eventdata/utils/ClassMnemomics.h>
20 
21 #include <tracking/trackFindingCDC/findlets/base/FindletModule.h>
22 
23 namespace Belle2 {
28  namespace TrackFindingCDC {
29 
36  class TFCDC_AxialTrackFinderLegendreModule : public FindletModule<AxialTrackFinderLegendre> {
37 
40 
41  public:
44  };
45 
49  class TFCDC_AxialTrackFinderHoughModule : public FindletModule<AxialTrackFinderHough> {
50 
53 
54  public:
57  };
58 
62  class TFCDC_AxialTrackCreatorSegmentHoughModule : public FindletModule<AxialTrackCreatorSegmentHough> {
63 
66 
67  public:
70  };
71 
75  class TFCDC_AxialTrackCreatorMCTruthModule : public FindletModule<AxialTrackCreatorMCTruth> {
76 
79 
80  public:
83  };
84 
89  class TFCDC_MonopoleAxialTrackFinderLegendreModule : public FindletModule<MonopoleAxialTrackFinderLegendre> {
90 
93 
94  public:
97  };
98 
102  class TFCDC_AxialStraightTrackFinderModule : public FindletModule<AxialStraightTrackFinder> {
103 
106 
107  public:
110  };
111  }
113 }
Adapter of a findlet to a module that exposes the parameters of the findlet and manages the IO with t...
Definition: FindletModule.h:30
Module implementation using the AxialStraightTrackFinder.
TFCDC_AxialStraightTrackFinderModule()
Constructor setting the default store vector names.
Module implementation using the AxialTrackCreatorMCTruth.
TFCDC_AxialTrackCreatorMCTruthModule()
Constructor setting the default store vector names.
Module implementation using the AxialTrackCreatorSegmentHough.
TFCDC_AxialTrackCreatorSegmentHoughModule()
Constructor setting the default store vector names.
Module implementation using the AxialTrackFinderHough.
TFCDC_AxialTrackFinderHoughModule()
Constructor setting the default store vector names.
CDC tracking module, using Legendre transformation of the drift time circles.
TFCDC_AxialTrackFinderLegendreModule()
Constructor setting the default store vector names.
Module implementation using the MonopoleAxialTrackFinderLegendre Modification of conventional AxialTr...
TFCDC_MonopoleAxialTrackFinderLegendreModule()
Constructor setting the default store vector names.
Abstract base class for different kinds of events.