Belle II Software development
AxialTrackCreatorHitLegendre Class Referenceabstract

Generates axial tracks from hit using special leaf postprocessing. More...

#include <AxialTrackCreatorHitLegendre.h>

Inheritance diagram for AxialTrackCreatorHitLegendre:
Findlet< const CDCWireHit *const, CDCTrack > CompositeProcessingSignalListener ProcessingSignalListener

Public Types

enum class  EPass {
  NonCurlers ,
  NonCurlersWithIncreasingThreshold ,
  FullRange ,
  Straight
}
 Pass keys for the different sets of predefined parameters for a pass if legendre search Note: Naming copied from original location. More...
 
using IOTypes = std::tuple< AIOTypes... >
 Types that should be served to apply on invokation.
 
using IOVectors = std::tuple< std::vector< AIOTypes >... >
 Vector types that should be served to apply on invokation.
 

Public Member Functions

 AxialTrackCreatorHitLegendre ()
 Constructor.
 
 AxialTrackCreatorHitLegendre (EPass pass)
 Constructor from a pass key.
 
std::string getDescription () final
 Short description of the findlet.
 
void exposeParameters (ModuleParamList *moduleParamList, const std::string &prefix) final
 Expose the parameters to a module.
 
void initialize () final
 Initialisation before the event processing starts.
 
void apply (const std::vector< const CDCWireHit * > &axialWireHits, std::vector< CDCTrack > &tracks) final
 Execute one pass over a quad tree.
 
virtual void apply (ToVector< AIOTypes > &... ioVectors)=0
 Main function executing the algorithm.
 
void beginRun () override
 Receive and dispatch signal for the beginning of a new run.
 
void beginEvent () override
 Receive and dispatch signal for the start of a new event.
 
void endRun () override
 Receive and dispatch signal for the end of the run.
 
void terminate () override
 Receive and dispatch Signal for termination of the event processing.
 

Protected Types

using ToVector = typename ToVectorImpl< T >::Type
 Short hand for ToRangeImpl.
 

Protected Member Functions

void addProcessingSignalListener (ProcessingSignalListener *psl)
 Register a processing signal listener to be notified.
 
int getNProcessingSignalListener ()
 Get the number of currently registered listeners.
 

Private Types

using Super = Findlet< const CDCWireHit *const, CDCTrack >
 Type of the base class.
 
using CandidateReceiver = AxialHitQuadTreeProcessor::CandidateReceiver
 lambda function used for postprocessing
 

Private Member Functions

std::unique_ptr< AxialHitQuadTreeProcessorconstructQTProcessor (EPass pass)
 Method to create QTProcessor that performs the search.
 
void executeRelaxation (const CandidateReceiver &candidateReceiver, AxialHitQuadTreeProcessor &qtProcessor)
 Performs quadtree search.
 

Private Attributes

EPass m_pass = EPass::NonCurlers
 The pass key for lookup of the parameters for this pass.
 
const double m_param_stepScale = 0.75
 Parameter to define multiplier for hits threshold for the next quadtree iteration.
 
int m_param_minNHits = 10
 Parameter to define minimal threshold of hit.
 
double m_param_precision = 0.00000001
 Parameter to define precision of quadtree search in case of straight pass.
 
std::vector< ProcessingSignalListener * > m_subordinaryProcessingSignalListeners
 References to subordinary signal processing listener contained in this findlet.
 
bool m_initialized = false
 Flag to keep track whether initialization happend before.
 
bool m_terminated = false
 Flag to keep track whether termination happend before.
 
std::string m_initializedAs
 Name of the type during initialisation.
 

Detailed Description

Generates axial tracks from hit using special leaf postprocessing.

Implements Legendre transformation of the drift time circles. This is a module, performing tracking in the CDC. It is based on the paper "Implementation of the Legendre Transform for track segment reconstruction in drift tube chambers" by T. Alexopoulus, et al. NIM A592 456-462 (2008).

Definition at line 32 of file AxialTrackCreatorHitLegendre.h.

Member Typedef Documentation

◆ CandidateReceiver

lambda function used for postprocessing

Definition at line 82 of file AxialTrackCreatorHitLegendre.h.

◆ IOTypes

using IOTypes = std::tuple<AIOTypes...>
inherited

Types that should be served to apply on invokation.

Definition at line 30 of file Findlet.h.

◆ IOVectors

using IOVectors = std::tuple< std::vector<AIOTypes>... >
inherited

Vector types that should be served to apply on invokation.

Definition at line 53 of file Findlet.h.

◆ Super

using Super = Findlet<const CDCWireHit* const, CDCTrack>
private

Type of the base class.

Definition at line 36 of file AxialTrackCreatorHitLegendre.h.

◆ ToVector

using ToVector = typename ToVectorImpl<T>::Type
protectedinherited

Short hand for ToRangeImpl.

Definition at line 49 of file Findlet.h.

Member Enumeration Documentation

◆ EPass

enum class EPass
strong

Pass keys for the different sets of predefined parameters for a pass if legendre search Note: Naming copied from original location.

Does not actually match with the associated parameters.

Enumerator
NonCurlers 

Pass corresponds to High-pt track finding and more deeper quadtree.

NonCurlersWithIncreasingThreshold 

Pass corresponds to High-pt track finding and more rough quadtree.

FullRange 

Pass corresponds to full pt range and even more rough quadtree (non-ip tracks, tracks with energy losses etc)

Straight 

Pass corresponds to very High-pt track and very rough quadtree (monopole tracks, including those with low hit count)

Definition at line 44 of file AxialTrackCreatorHitLegendre.h.

44 {
55 };
@ NonCurlers
Pass corresponds to High-pt track finding and more deeper quadtree.
@ FullRange
Pass corresponds to full pt range and even more rough quadtree (non-ip tracks, tracks with energy los...
@ Straight
Pass corresponds to very High-pt track and very rough quadtree (monopole tracks, including those with...
@ NonCurlersWithIncreasingThreshold
Pass corresponds to High-pt track finding and more rough quadtree.

Constructor & Destructor Documentation

◆ AxialTrackCreatorHitLegendre()

AxialTrackCreatorHitLegendre ( EPass  pass)
explicit

Constructor from a pass key.

Definition at line 69 of file AxialTrackCreatorHitLegendre.cc.

70 : m_pass(pass)
71{
72}
EPass m_pass
The pass key for lookup of the parameters for this pass.

Member Function Documentation

◆ addProcessingSignalListener()

void addProcessingSignalListener ( ProcessingSignalListener psl)
protectedinherited

Register a processing signal listener to be notified.

Definition at line 55 of file CompositeProcessingSignalListener.cc.

56{
58}
std::vector< ProcessingSignalListener * > m_subordinaryProcessingSignalListeners
References to subordinary signal processing listener contained in this findlet.

◆ apply()

void apply ( const std::vector< const CDCWireHit * > &  axialWireHits,
std::vector< CDCTrack > &  tracks 
)
final

Execute one pass over a quad tree.

Definition at line 99 of file AxialTrackCreatorHitLegendre.cc.

101{
102 // Prepare vector of unused hits to provide to the qt processor
103 // Also reset the mask flag and select only the untaken hits
104 std::vector<const CDCWireHit*> unusedAxialWireHits;
105 for (const CDCWireHit* wireHit : axialWireHits) {
106 (*wireHit)->setMaskedFlag(false);
107 if ((*wireHit)->hasTakenFlag()) continue;
108 unusedAxialWireHits.push_back(wireHit);
109 }
110
111 // Create quadtree processor
112 std::unique_ptr<AxialHitQuadTreeProcessor> qtProcessor = constructQTProcessor(m_pass);
113 qtProcessor->seed(unusedAxialWireHits);
114// qtProcessor->drawHits(unusedAxialWireHits, 9);
115
116 // Create object which contains interface between quadtree processor and track processor (module)
117 std::unique_ptr<BaseCandidateReceiver> receiver;
118 if (not(m_pass == EPass::Straight)) {
119 receiver = std::make_unique<OffOriginExtension>(unusedAxialWireHits);
120 } else {
121 receiver = std::make_unique<BaseCandidateReceiver>(unusedAxialWireHits);
122 }
123
124 // Start candidate finding
125 this->executeRelaxation(std::ref(*receiver), *qtProcessor);
126
127 const std::vector<CDCTrack>& newTracks = receiver->getTracks();
128 tracks.insert(tracks.end(), newTracks.begin(), newTracks.end());
129}
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.
Class representing a hit wire in the central drift chamber.
Definition: CDCWireHit.h:55

◆ beginEvent()

void beginEvent ( )
overridevirtualinherited

Receive and dispatch signal for the start of a new event.

Reimplemented from ProcessingSignalListener.

Reimplemented in SpacePointTagger< Belle2::CKFToPXDResult, Belle2::PXDCluster >, SpacePointTagger< Belle2::CKFToSVDResult, Belle2::SVDCluster >, BaseEventTimeExtractor< RecoTrack * >, BaseEventTimeExtractor< TrackFindingCDC::CDCWireHit & >, SharingHitsMatcher< Belle2::TrackFindingCDC::CDCTrack, Belle2::TrackFindingCDC::CDCSegment2D >, MCSymmetric< BaseAxialSegmentPairFilter >, MCSymmetric< BaseFacetFilter >, MCSymmetric< BaseFacetRelationFilter >, MCSymmetric< BaseSegmentPairFilter >, MCSymmetric< BaseSegmentPairRelationFilter >, MCSymmetric< BaseSegmentRelationFilter >, MCSymmetric< BaseSegmentTripleFilter >, MCSymmetric< BaseSegmentTripleRelationFilter >, MCSymmetric< BaseTrackRelationFilter >, StoreVectorSwapper< Belle2::TrackFindingCDC::CDCFacet >, StoreVectorSwapper< Belle2::TrackFindingCDC::CDCWireHit, true >, StoreVectorSwapper< Belle2::TrackFindingCDC::CDCSegment2D >, StoreVectorSwapper< Belle2::TrackFindingCDC::CDCTrack >, StoreVectorSwapper< Belle2::TrackFindingCDC::CDCSegmentPair >, StoreVectorSwapper< Belle2::TrackFindingCDC::CDCSegmentTriple >, RecoTrackStorer, ROIFinder, and SVDHoughTracking.

Definition at line 31 of file CompositeProcessingSignalListener.cc.

32{
35 psl->beginEvent();
36 }
37}
Interface for an algorithm part that needs to receive the module processing signals.
virtual void beginEvent()
Receive signal for the start of a new event.

◆ beginRun()

void beginRun ( )
overridevirtualinherited

Receive and dispatch signal for the beginning of a new run.

Reimplemented from ProcessingSignalListener.

Reimplemented in LayerRelationFilter< AFilter >, FourHitFilter, QualityIndicatorFilter, ThreeHitFilter, TwoHitVirtualIPFilter, TwoHitVirtualIPQIFilter, RecoTrackStorer, ROIFinder, SpacePointLoaderAndPreparer, and TrackCandidateResultRefiner.

Definition at line 23 of file CompositeProcessingSignalListener.cc.

24{
27 psl->beginRun();
28 }
29}
virtual void beginRun()
Receive signal for the beginning of a new run.

◆ constructQTProcessor()

std::unique_ptr< AxialHitQuadTreeProcessor > constructQTProcessor ( EPass  pass)
private

Method to create QTProcessor that performs the search.

Definition at line 23 of file AxialTrackCreatorHitLegendre.cc.

24{
26 using PrecisionFunction = PrecisionUtil::PrecisionFunction;
27 const int maxTheta = std::pow(2, PrecisionUtil::getLookupGridLevel());
28
29 if (pass == EPass::NonCurlers) {
30 int maxLevel = 12;
31 int seedLevel = 4;
32 XYSpans xySpans({{0, maxTheta}, { -0.02, 0.14}});
33 PrecisionFunction precisionFunction = &PrecisionUtil::getOriginCurvPrecision;
34
35 return std::make_unique<AxialHitQuadTreeProcessor>(maxLevel, seedLevel, xySpans, precisionFunction);
36
37 } else if (pass == EPass::NonCurlersWithIncreasingThreshold) {
38 int maxLevel = 10;
39 int seedLevel = 4;
40 XYSpans xySpans({{0, maxTheta}, { -0.02, 0.14}});
41 PrecisionFunction precisionFunction = &PrecisionUtil::getNonOriginCurvPrecision;
42
43 return std::make_unique<AxialHitQuadTreeProcessor>(maxLevel, seedLevel, xySpans, precisionFunction);
44
45 } else if (pass == EPass::FullRange) {
46 int maxLevel = 10;
47 int seedLevel = 1;
48 XYSpans xySpans({{0, maxTheta}, {0.00, 0.30}});
49 PrecisionFunction precisionFunction = &PrecisionUtil::getNonOriginCurvPrecision;
50
51 return std::make_unique<AxialHitQuadTreeProcessor>(maxLevel, seedLevel, xySpans, precisionFunction);
52
53 } else if (pass == EPass::Straight) {
54 int maxLevel = 10;
55 int seedLevel = 4;
56 XYSpans xySpans({{0, maxTheta}, { -0.02, 0.02}});
57// PrecisionFunction precisionFunction = &PrecisionUtil::getBasicCurvPrecision; //That is 0.3 / pow(2, 16)
58 PrecisionFunction precisionFunction = [this](double curv __attribute__((unused))) {return m_param_precision ;};
59
60 return std::make_unique<AxialHitQuadTreeProcessor>(maxLevel, seedLevel, xySpans, precisionFunction);
61
62 }
63 B2FATAL("Invalid pass");
64}
double m_param_precision
Parameter to define precision of quadtree search in case of straight pass.
static double getOriginCurvPrecision(double curv)
Function which estimates desired curvature resolution of quadtree node in the given pt region paramet...
Definition: PrecisionUtil.h:65
static double getNonOriginCurvPrecision(double curv)
Function which estimates desired curvature resolution of quadtree node in the given pt region paramet...
Definition: PrecisionUtil.h:90
static constexpr int getLookupGridLevel()
Returns desired deepness of the trigonometrical lookup table. Used as template parameter for the Trig...
Definition: PrecisionUtil.h:29
std::function< double(double)> PrecisionFunction
Function type which is used for resolution calculations (resolution=f(curvature)) Takes a curvature v...
Definition: PrecisionUtil.h:43
std::pair< XSpan, YSpan > XYSpans
This pair of spans describes the span of a node.

◆ endRun()

void endRun ( )
overridevirtualinherited

Receive and dispatch signal for the end of the run.

Reimplemented from ProcessingSignalListener.

Definition at line 39 of file CompositeProcessingSignalListener.cc.

40{
42 psl->endRun();
43 }
45}
virtual void endRun()
Receive signal for the end of the run.

◆ executeRelaxation()

void executeRelaxation ( const CandidateReceiver candidateReceiver,
AxialHitQuadTreeProcessor qtProcessor 
)
private

Performs quadtree search.

Parameters
candidateReceiverlambda interface process found leaves in the legendre search
qtProcessorreference to the AxialHitQuadTreeProcessor instance

Definition at line 131 of file AxialTrackCreatorHitLegendre.cc.

133{
134 // radius of the CDC
135 const double rCDC = 113.;
136
137 // Curvature for high pt particles that leave the CDC
138 const double curlCurv = 2. / rCDC;
139
140 // find leavers
141 qtProcessor.fill(candidateReceiver, 50, curlCurv);
142
143 // find curlers with diameter higher than half of radius of CDC
144 qtProcessor.fill(candidateReceiver, 70, 2 * curlCurv);
145
146 // Start relaxation loop
147 int minNHits = m_pass == EPass::FullRange ? 30 : 50;
148 double maxCurv = m_pass == EPass::FullRange ? 0.15 : 0.07;
149 do {
150 qtProcessor.fill(candidateReceiver, minNHits, maxCurv);
151
152 minNHits = minNHits * m_param_stepScale;
153
154 if (m_pass != EPass::NonCurlers) {
155 maxCurv *= 2.;
156 if (maxCurv > 0.15) maxCurv = 0.15;
157 }
158
159 } while (minNHits >= m_param_minNHits);
160}
const double m_param_stepScale
Parameter to define multiplier for hits threshold for the next quadtree iteration.
int m_param_minNHits
Parameter to define minimal threshold of hit.
void fill(const CandidateReceiver &candidateReceiver, int nHitsThreshold)
Start filling the already created tree.

◆ exposeParameters()

void exposeParameters ( ModuleParamList moduleParamList,
const std::string &  prefix 
)
finalvirtual

Expose the parameters to a module.

Reimplemented from Findlet< const CDCWireHit *const, CDCTrack >.

Definition at line 79 of file AxialTrackCreatorHitLegendre.cc.

81{
82 moduleParamList->addParameter(prefixed(prefix, "minNHits"),
84 "Parameter to define minimal threshold of number of hits.",
86 if (m_pass == EPass::Straight) {
87 moduleParamList->addParameter(prefixed(prefix, "precision"),
89 "Parameter to define precision of quadtree search.",
91 }
92}
void addParameter(const std::string &name, T &paramVariable, const std::string &description, const T &defaultValue)
Adds a new parameter to the module list.

◆ getDescription()

std::string getDescription ( )
finalvirtual

Short description of the findlet.

Reimplemented from Findlet< const CDCWireHit *const, CDCTrack >.

Definition at line 74 of file AxialTrackCreatorHitLegendre.cc.

75{
76 return "Generates axial tracks from hits using several increasingly relaxed legendre space search over phi0 and curvature.";
77}

◆ getNProcessingSignalListener()

int getNProcessingSignalListener ( )
protectedinherited

Get the number of currently registered listeners.

Definition at line 60 of file CompositeProcessingSignalListener.cc.

61{
63}

◆ initialize()

void initialize ( )
finalvirtual

Initialisation before the event processing starts.

Reimplemented from ProcessingSignalListener.

Definition at line 94 of file AxialTrackCreatorHitLegendre.cc.

95{
97}
void initialize() override
Receive and dispatch signal before the start of the event processing.

◆ terminate()

void terminate ( )
overridevirtualinherited

Receive and dispatch Signal for termination of the event processing.

Reimplemented from ProcessingSignalListener.

Reimplemented in StereoHitTrackQuadTreeMatcher< Belle2::TrackFindingCDC::HyperHough >, StereoHitTrackQuadTreeMatcher< Belle2::TrackFindingCDC::QuadraticLegendre >, and StereoHitTrackQuadTreeMatcher< Belle2::TrackFindingCDC::Z0TanLambdaLegendre >.

Definition at line 47 of file CompositeProcessingSignalListener.cc.

48{
50 psl->terminate();
51 }
53}
virtual void terminate()
Receive Signal for termination of the event processing.

Member Data Documentation

◆ m_initialized

bool m_initialized = false
privateinherited

Flag to keep track whether initialization happend before.

Definition at line 52 of file ProcessingSignalListener.h.

◆ m_initializedAs

std::string m_initializedAs
privateinherited

Name of the type during initialisation.

Definition at line 58 of file ProcessingSignalListener.h.

◆ m_param_minNHits

int m_param_minNHits = 10
private

Parameter to define minimal threshold of hit.

Definition at line 99 of file AxialTrackCreatorHitLegendre.h.

◆ m_param_precision

double m_param_precision = 0.00000001
private

Parameter to define precision of quadtree search in case of straight pass.

Definition at line 102 of file AxialTrackCreatorHitLegendre.h.

◆ m_param_stepScale

const double m_param_stepScale = 0.75
private

Parameter to define multiplier for hits threshold for the next quadtree iteration.

Definition at line 96 of file AxialTrackCreatorHitLegendre.h.

◆ m_pass

EPass m_pass = EPass::NonCurlers
private

The pass key for lookup of the parameters for this pass.

Definition at line 93 of file AxialTrackCreatorHitLegendre.h.

◆ m_subordinaryProcessingSignalListeners

std::vector<ProcessingSignalListener*> m_subordinaryProcessingSignalListeners
privateinherited

References to subordinary signal processing listener contained in this findlet.

Definition at line 52 of file CompositeProcessingSignalListener.h.

◆ m_terminated

bool m_terminated = false
privateinherited

Flag to keep track whether termination happend before.

Definition at line 55 of file ProcessingSignalListener.h.


The documentation for this class was generated from the following files: