8#include <tracking/trackFindingCDC/findlets/minimal/AxialTrackCreatorHitLegendre.h>
10#include <tracking/trackFindingCDC/legendre/quadtree/OffOriginExtension.h>
12#include <tracking/trackingUtilities/eventdata/tracks/CDCTrack.h>
13#include <tracking/trackingUtilities/eventdata/hits/CDCWireHit.h>
15#include <tracking/trackingUtilities/utilities/StringManipulation.h>
17#include <framework/core/ModuleParamList.templateDetails.h>
20using namespace TrackFindingCDC;
21using namespace TrackingUtilities;
30 if (pass == EPass::NonCurlers) {
33 XYSpans xySpans({{0, maxTheta}, { -0.02, 0.14}});
36 return std::make_unique<AxialHitQuadTreeProcessor>(maxLevel, seedLevel, xySpans, precisionFunction);
38 }
else if (pass == EPass::NonCurlersWithIncreasingThreshold) {
41 XYSpans xySpans({{0, maxTheta}, { -0.02, 0.14}});
44 return std::make_unique<AxialHitQuadTreeProcessor>(maxLevel, seedLevel, xySpans, precisionFunction);
46 }
else if (pass == EPass::FullRange) {
49 XYSpans xySpans({{0, maxTheta}, {0.00, 0.30}});
52 return std::make_unique<AxialHitQuadTreeProcessor>(maxLevel, seedLevel, xySpans, precisionFunction);
54 }
else if (pass == EPass::Straight) {
57 XYSpans xySpans({{0, maxTheta}, { -0.02, 0.02}});
59 PrecisionFunction precisionFunction = [
this](
double curv __attribute__((unused))) {
return m_param_precision ;};
61 return std::make_unique<AxialHitQuadTreeProcessor>(maxLevel, seedLevel, xySpans, precisionFunction);
64 B2FATAL(
"Invalid pass");
77 return "Generates axial tracks from hits using several increasingly relaxed legendre space search over phi0 and curvature.";
81 const std::string& prefix)
83 moduleParamList->
addParameter(prefixed(prefix,
"minNHits"),
85 "Parameter to define minimal threshold of number of hits.",
87 if (
m_pass == EPass::Straight) {
88 moduleParamList->
addParameter(prefixed(prefix,
"precision"),
90 "Parameter to define precision of quadtree search.",
101 std::vector<TrackingUtilities::CDCTrack>& tracks)
105 std::vector<const TrackingUtilities::CDCWireHit*> unusedAxialWireHits;
107 (*wireHit)->setMaskedFlag(
false);
108 if ((*wireHit)->hasTakenFlag())
continue;
109 unusedAxialWireHits.push_back(wireHit);
114 qtProcessor->seed(unusedAxialWireHits);
118 std::unique_ptr<BaseCandidateReceiver> receiver;
119 if (not(
m_pass == EPass::Straight)) {
120 receiver = std::make_unique<OffOriginExtension>(unusedAxialWireHits);
122 receiver = std::make_unique<BaseCandidateReceiver>(unusedAxialWireHits);
128 const std::vector<CDCTrack>& newTracks = receiver->getTracks();
129 tracks.insert(tracks.end(), newTracks.begin(), newTracks.end());
136 const double rCDC = 113.;
139 const double curlCurv = 2. / rCDC;
142 qtProcessor.
fill(candidateReceiver, 50, curlCurv);
145 qtProcessor.
fill(candidateReceiver, 70, 2 * curlCurv);
148 int minNHits =
m_pass == EPass::FullRange ? 30 : 50;
149 double maxCurv =
m_pass == EPass::FullRange ? 0.15 : 0.07;
151 qtProcessor.
fill(candidateReceiver, minNHits, maxCurv);
155 if (
m_pass != EPass::NonCurlers) {
157 if (maxCurv > 0.15) maxCurv = 0.15;
The Module parameter list class.
A QuadTreeProcessor for TrackHits.
void apply(const std::vector< const TrackingUtilities::CDCWireHit * > &axialWireHits, std::vector< TrackingUtilities::CDCTrack > &tracks) final
Execute one pass over a quad tree.
EPass m_pass
The pass key for lookup of the parameters for this pass.
const double m_param_stepScale
Parameter to define multiplier for hits threshold for the next quadtree iteration.
void initialize() final
Initialisation before the event processing starts.
int m_param_minNHits
Parameter to define minimal threshold of hit.
AxialTrackCreatorHitLegendre()
Constructor.
std::string getDescription() final
Short description of the findlet.
AxialHitQuadTreeProcessor::CandidateReceiver CandidateReceiver
lambda function used for postprocessing
void executeRelaxation(const CandidateReceiver &candidateReceiver, AxialHitQuadTreeProcessor &qtProcessor)
Performs quadtree search.
std::unique_ptr< AxialHitQuadTreeProcessor > constructQTProcessor(EPass pass)
Method to create QTProcessor that performs the search.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) final
Expose the parameters to a module.
double m_param_precision
Parameter to define precision of quadtree search in case of straight pass.
EPass
Pass keys for the different sets of predefined parameters for a pass if legendre search Note: Naming ...
static double getOriginCurvPrecision(double curv)
Function which estimates desired curvature resolution of quadtree node in the given pt region paramet...
static double getNonOriginCurvPrecision(double curv)
Function which estimates desired curvature resolution of quadtree node in the given pt region paramet...
static constexpr int getLookupGridLevel()
Returns desired deepness of the trigonometrical lookup table. Used as template parameter for the Trig...
std::function< double(double)> PrecisionFunction
Function type which is used for resolution calculations (resolution=f(curvature)) Takes a curvature v...
std::pair< XSpan, YSpan > XYSpans
void fill(const CandidateReceiver &candidateReceiver, int nHitsThreshold)
Start filling the already created tree.
Class representing a hit wire in the central drift chamber.
void initialize() override
void addParameter(const std::string &name, T ¶mVariable, const std::string &description, const T &defaultValue)
Adds a new parameter to the module list.
Abstract base class for different kinds of events.