8#include <tracking/trackFindingCDC/findlets/combined/AxialStraightTrackFinder.h>
10#include <tracking/trackingUtilities/eventdata/tracks/CDCTrack.h>
11#include <tracking/trackingUtilities/eventdata/hits/CDCWireHit.h>
12#include <mdst/dataobjects/ECLCluster.h>
15using namespace TrackFindingCDC;
16using namespace TrackingUtilities;
32 return "Performs a search for straight tracks coming from IP and ending in an ECL cluster";
36 const std::string& prefix)
42 std::vector<CDCTrack>& tracks)
44 B2DEBUG(25,
"********** CDCTrackingModule ************");
47 std::vector<const ECLCluster*> clusters;
51 clusters.emplace_back(&cluster);
55 std::vector<const CDCWireHit*> axialWireHits;
56 axialWireHits.reserve(wireHits.size());
58 if (not wireHit.isAxial())
continue;
59 axialWireHits.emplace_back(&wireHit);
@ c_nPhotons
CR is split into n photons (N1)
The Module parameter list class.
void apply(const std::vector< TrackingUtilities::CDCWireHit > &wireHits, std::vector< TrackingUtilities::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.
AxialStraightTrackCreator m_axialStraightTrackCreator
Findlet for straight legendre pass.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) final
Expose the parameters to a module.
StoreArray< ECLCluster > m_storeArrayClusters
Accessor to the ECLClusters StoreArray.
AxialStraightTrackFinder()
Constructor.
Class representing a hit wire in the central drift chamber.
void initialize() override
void addProcessingSignalListener(ProcessingSignalListener *psl)
Abstract base class for different kinds of events.