 |
Belle II Software
release-05-01-25
|
10 #include <tracking/trackFindingCDC/findlets/combined/AxialStraightTrackFinder.h>
12 #include <tracking/trackFindingCDC/eventdata/tracks/CDCTrack.h>
13 #include <tracking/trackFindingCDC/eventdata/hits/CDCWireHit.h>
14 #include <mdst/dataobjects/ECLCluster.h>
17 using namespace TrackFindingCDC;
33 return "Performs a search for straight tracks coming from IP and ending in an ECL cluster";
37 const std::string& prefix)
43 std::vector<CDCTrack>& tracks)
45 B2DEBUG(100,
"********** CDCTrackingModule ************");
48 std::vector<const ECLCluster*> clusters;
52 clusters.emplace_back(&cluster);
56 std::vector<const CDCWireHit*> axialWireHits;
57 axialWireHits.reserve(wireHits.size());
59 if (not wireHit.isAxial())
continue;
60 axialWireHits.emplace_back(&wireHit);
StoreArray< ECLCluster > m_storeArrayClusters
Accessor to the ECLClusters StoreArray.
AxialStraightTrackCreator m_axialStraightTrackCreator
Findlet for straight legendre pass.
@ c_nPhotons
CR is split into n photons (N1)
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) final
Expose the parameters to a module.
void addProcessingSignalListener(ProcessingSignalListener *psl)
Register a processing signal listener to be notified.
void apply(const std::vector< const ECLCluster * > &eclClusters, const std::vector< const CDCWireHit * > &axialWireHits, std::vector< CDCTrack > &tracks) final
Execute one pass over given clusters and wirehits and create tracks.
void initialize() override
Receive and dispatch signal before the start of the event processing.
void apply(const std::vector< CDCWireHit > &wireHits, std::vector< CDCTrack > &tracks)
Main method to apply the track finding.
void initialize() final
Receive signal before the start of the event processing.
std::string getDescription() final
Short description of the findlet.
Abstract base class for different kinds of events.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) final
Expose the parameters to a module.
Class representing a hit wire in the central drift chamber.
The Module parameter list class.
AxialStraightTrackFinder()
Constructor.