8#include <tracking/trackFindingCDC/findlets/combined/AxialStraightTrackFinder.h>
10#include <tracking/trackFindingCDC/eventdata/tracks/CDCTrack.h>
11#include <tracking/trackFindingCDC/eventdata/hits/CDCWireHit.h>
12#include <mdst/dataobjects/ECLCluster.h>
15using namespace TrackFindingCDC;
31 return "Performs a search for straight tracks coming from IP and ending in an ECL cluster";
35 const std::string& prefix)
41 std::vector<CDCTrack>& tracks)
43 B2DEBUG(25,
"********** CDCTrackingModule ************");
46 std::vector<const ECLCluster*> clusters;
50 clusters.emplace_back(&cluster);
54 std::vector<const CDCWireHit*> axialWireHits;
55 axialWireHits.reserve(wireHits.size());
57 if (not wireHit.isAxial())
continue;
58 axialWireHits.emplace_back(&wireHit);
@ c_nPhotons
CR is split into n photons (N1)
The Module parameter list class.
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 exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) final
Expose the parameters to a module.
void initialize() final
Receive signal before the start of the event processing.
std::string getDescription() final
Short description of the findlet.
AxialStraightTrackCreator m_axialStraightTrackCreator
Findlet for straight legendre pass.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) final
Expose the parameters to a module.
void apply(const std::vector< CDCWireHit > &wireHits, std::vector< CDCTrack > &tracks)
Main method to apply the track finding.
StoreArray< ECLCluster > m_storeArrayClusters
Accessor to the ECLClusters StoreArray.
AxialStraightTrackFinder()
Constructor.
Class representing a hit wire in the central drift chamber.
void initialize() override
Receive and dispatch signal before the start of the event processing.
void addProcessingSignalListener(ProcessingSignalListener *psl)
Register a processing signal listener to be notified.
Abstract base class for different kinds of events.