Belle II Software  release-05-01-25
MonopoleAxialTrackFinderLegendre.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2015 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Bastian Kronenbitter, Thomas Hauth, Viktor Trusov, *
7  * Nils Braun, Oliver Frost, Dmitrii Neverov *
8  * *
9  * This software is provided "as is" without any warranty. *
10  **************************************************************************/
11 #pragma once
12 
13 #include <tracking/trackFindingCDC/findlets/base/Findlet.h>
14 
15 #include <tracking/trackFindingCDC/findlets/minimal/AxialTrackCreatorHitLegendre.h>
16 
17 #include <vector>
18 #include <string>
19 
20 namespace Belle2 {
27  namespace TrackFindingCDC {
28  class CDCTrack;
29  class CDCWireHit;
30  enum class LegendreFindingPass;
31 
45  class MonopoleAxialTrackFinderLegendre : public Findlet<const CDCWireHit, CDCTrack> {
46 
47  private:
49  using Super = Findlet<const CDCWireHit, CDCTrack>;
50 
51  public:
54 
56  std::string getDescription() final;
57 
59  void exposeParameters(ModuleParamList* moduleParamList, const std::string& prefix) final;
60 
62  void apply(const std::vector<CDCWireHit>& wireHits, std::vector<CDCTrack>& tracks);
63 
64  private: // findlets
67 
70 
71  // Other findlets, like HitMigrator and Merger are not yet used because of limiting thresholds
72  };
73  }
75 }
Belle2::TrackFindingCDC::MonopoleAxialTrackFinderLegendre::getDescription
std::string getDescription() final
Short description of the findlet.
Definition: MonopoleAxialTrackFinderLegendre.cc:24
Belle2::TrackFindingCDC::CDCTrack
Class representing a sequence of three dimensional reconstructed hits.
Definition: CDCTrack.h:51
Belle2::TrackFindingCDC::AxialTrackCreatorHitLegendre::EPass::Straight
@ Straight
Pass corresponds to very High-pt track and very rough quadtree (monopole tracks, including those with...
Belle2::TrackFindingCDC::MonopoleAxialTrackFinderLegendre::m_straightMonopoleAxialTrackCreatorHitLegendre
AxialTrackCreatorHitLegendre m_straightMonopoleAxialTrackCreatorHitLegendre
Findlet for straight legendre pass.
Definition: MonopoleAxialTrackFinderLegendre.h:78
Belle2::TrackFindingCDC::MonopoleAxialTrackFinderLegendre::exposeParameters
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) final
Expose the parameters to a module.
Definition: MonopoleAxialTrackFinderLegendre.cc:29
Belle2::TrackFindingCDC::AxialTrackCreatorHitLegendre::EPass
EPass
Pass keys for the different sets of predefined parameters for a pass if legendre search Note: Naming ...
Definition: AxialTrackCreatorHitLegendre.h:56
Belle2::TrackFindingCDC::MonopoleAxialTrackFinderLegendre::Super
Findlet< const CDCWireHit, CDCTrack > Super
Type of the base class.
Definition: MonopoleAxialTrackFinderLegendre.h:58
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::TrackFindingCDC::MonopoleAxialTrackFinderLegendre::MonopoleAxialTrackFinderLegendre
MonopoleAxialTrackFinderLegendre()
Constructor.
Definition: MonopoleAxialTrackFinderLegendre.cc:19
Belle2::TrackFindingCDC::MonopoleAxialTrackFinderLegendre::apply
void apply(const std::vector< CDCWireHit > &wireHits, std::vector< CDCTrack > &tracks)
Main method to apply the track finding.
Definition: MonopoleAxialTrackFinderLegendre.cc:35
Belle2::TrackFindingCDC::AxialTrackCreatorHitLegendre
Generates axial tracks from hit using special leaf postprocessing.
Definition: AxialTrackCreatorHitLegendre.h:44
Belle2::TrackFindingCDC::CDCWireHit
Class representing a hit wire in the central drift chamber.
Definition: CDCWireHit.h:65
Belle2::ModuleParamList
The Module parameter list class.
Definition: ModuleParamList.h:46