Belle II Software  release-05-01-25
AxialStraightTrackFinder.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2018 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Dmitrii Neverov *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 #pragma once
11 
12 #include <tracking/trackFindingCDC/findlets/base/Findlet.h>
13 
14 #include <tracking/trackFindingCDC/findlets/minimal/AxialStraightTrackCreator.h>
15 #include <framework/datastore/StoreArray.h>
16 
17 #include <vector>
18 #include <string>
19 
20 namespace Belle2 {
25  class ECLCluster;
26 
27  namespace TrackFindingCDC {
28  class CDCTrack;
29  class CDCWireHit;
30 
36  class AxialStraightTrackFinder : public Findlet<const CDCWireHit, CDCTrack> {
37 
38  private:
40  using Super = Findlet<const CDCWireHit, CDCTrack>;
41 
42  public:
45 
46  void initialize() final;
47 
49  std::string getDescription() final;
50 
52  void exposeParameters(ModuleParamList* moduleParamList, const std::string& prefix) final;
53 
55  void apply(const std::vector<CDCWireHit>& wireHits, std::vector<CDCTrack>& tracks);
56 
57  private:
60 
63 
64  // Other findlets, especially post-processing should be here.
65  };
66  }
68 }
69 
Belle2::TrackFindingCDC::CDCTrack
Class representing a sequence of three dimensional reconstructed hits.
Definition: CDCTrack.h:51
Belle2::ECLCluster
ECL cluster data.
Definition: ECLCluster.h:39
Belle2::TrackFindingCDC::AxialStraightTrackFinder::m_storeArrayClusters
StoreArray< ECLCluster > m_storeArrayClusters
Accessor to the ECLClusters StoreArray.
Definition: AxialStraightTrackFinder.h:67
Belle2::TrackFindingCDC::AxialStraightTrackFinder::m_axialStraightTrackCreator
AxialStraightTrackCreator m_axialStraightTrackCreator
Findlet for straight legendre pass.
Definition: AxialStraightTrackFinder.h:70
Belle2::TrackFindingCDC::AxialStraightTrackFinder::exposeParameters
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) final
Expose the parameters to a module.
Definition: AxialStraightTrackFinder.cc:36
Belle2::TrackFindingCDC::AxialStraightTrackFinder::apply
void apply(const std::vector< CDCWireHit > &wireHits, std::vector< CDCTrack > &tracks)
Main method to apply the track finding.
Definition: AxialStraightTrackFinder.cc:42
Belle2::TrackFindingCDC::AxialStraightTrackFinder::initialize
void initialize() final
Receive signal before the start of the event processing.
Definition: AxialStraightTrackFinder.cc:24
Belle2::TrackFindingCDC::AxialStraightTrackFinder::getDescription
std::string getDescription() final
Short description of the findlet.
Definition: AxialStraightTrackFinder.cc:31
Belle2::TrackFindingCDC::AxialStraightTrackFinder::Super
Findlet< const CDCWireHit, CDCTrack > Super
Type of the base class.
Definition: AxialStraightTrackFinder.h:48
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::TrackFindingCDC::AxialStraightTrackCreator
A findlet that searches for straight tracks in CDC coming form IP to an ECL cluster.
Definition: AxialStraightTrackCreator.h:38
Belle2::StoreArray
Accessor to arrays stored in the data store.
Definition: ECLMatchingPerformanceExpertModule.h:33
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
Belle2::TrackFindingCDC::AxialStraightTrackFinder::AxialStraightTrackFinder
AxialStraightTrackFinder()
Constructor.
Definition: AxialStraightTrackFinder.cc:19