 |
Belle II Software
release-05-01-25
|
13 #include <tracking/trackFindingCDC/findlets/base/Findlet.h>
15 #include <tracking/trackFindingCDC/legendre/quadtree/AxialHitQuadTreeProcessor.h>
23 namespace TrackFindingCDC {
35 class AxialTrackCreatorHitLegendre :
public Findlet<const CDCWireHit* const, CDCTrack> {
39 using Super = Findlet<const CDCWireHit* const, CDCTrack>;
71 void exposeParameters(ModuleParamList* moduleParamList, const std::
string& prefix) final;
77 void apply(const std::vector<const CDCWireHit*>& axialWireHits,
78 std::vector<CDCTrack>& tracks) final;
92 AxialHitQuadTreeProcessor& qtProcessor);
Findlet< const CDCWireHit *const, CDCTrack > Super
Type of the base class.
@ NonCurlers
Pass corresponds to High-pt track finding and more deeper quadtree.
EPass m_pass
The pass key for lookup of the parameters for this pass.
@ NonCurlersWithIncreasingThreshold
Pass corresponds to High-pt track finding and more rough quadtree.
std::string getDescription() final
Short description of the findlet.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) final
Expose the parameters to a module.
@ Straight
Pass corresponds to very High-pt track and very rough quadtree (monopole tracks, including those with...
void apply(const std::vector< const CDCWireHit * > &axialWireHits, std::vector< CDCTrack > &tracks) final
Execute one pass over a quad tree.
void executeRelaxation(const CandidateReceiver &candidateReceiver, AxialHitQuadTreeProcessor &qtProcessor)
Performs quadtree search.
void initialize() final
Initialisation before the event processing starts.
EPass
Pass keys for the different sets of predefined parameters for a pass if legendre search Note: Naming ...
Abstract base class for different kinds of events.
@ FullRange
Pass corresponds to full pt range and even more rough quadtree (non-ip tracks, tracks with energy los...
std::unique_ptr< AxialHitQuadTreeProcessor > constructQTProcessor(EPass pass)
Method to create QTProcessor that performs the search.
int m_param_minNHits
Parameter to define minimal threshold of hit.
const double m_param_stepScale
Parameter to define multiplier for hits threshold for the next quadtree iteration.
double m_param_precision
Parameter to define precision of quadtree search in case of straight pass.
AxialHitQuadTreeProcessor::CandidateReceiver CandidateReceiver
lambda function used for postprocessing
AxialTrackCreatorHitLegendre()
Constructor.