Belle II Software release-09-00-00
AxialTrackMerger Class Referenceabstract

Findlet implementing the merging of axial tracks found in the legendre tree search. More...

#include <AxialTrackMerger.h>

Inheritance diagram for AxialTrackMerger:
Collaboration diagram for AxialTrackMerger:

Public Types

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

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 apply (std::vector< CDCTrack > &axialTracks, const std::vector< const CDCWireHit * > &axialWireHits) final
 Merge tracks together. Allows for axial hits to be added as it may see fit.
 
virtual void apply (ToVector< AIOTypes > &... ioVectors)=0
 Main function executing the algorithm.
 
void initialize () override
 Receive and dispatch signal before the start of the event processing.
 
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

template<class T >
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< CDCTrack &, const CDCWireHit *const >
 Type of the base class.
 

Private Member Functions

void doTracksMerging (std::vector< CDCTrack > &axialTracks, const std::vector< const CDCWireHit * > &allAxialWireHits)
 The track finding often finds two curling tracks, originating from the same particle.
 

Static Private Member Functions

template<class ACDCTracks >
static WithWeight< MayBePtr< CDCTrack > > calculateBestTrackToMerge (CDCTrack &track, ACDCTracks &tracks)
 Searches for the best candidate to merge this track to.
 
static double doTracksFitTogether (CDCTrack &track1, CDCTrack &track2)
 Fits the hit content of both tracks in a common fit repeated with an annealing schedule removing far away hits.
 
static void removeStrangeHits (double factor, std::vector< const CDCWireHit * > &wireHits, CDCTrajectory2D &trajectory)
 Remove all hits that are further than factor * driftlength away from the trajectory.
 
static void mergeTracks (CDCTrack &track1, CDCTrack &track2, const std::vector< const CDCWireHit * > &allAxialWireHits)
 Function to merge two track candidates.
 

Private Attributes

double m_param_minFitProb = 0.85
 Parameter : Minimal fit probability of the common fit of two tracks to be eligible for merging.
 
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

Findlet implementing the merging of axial tracks found in the legendre tree search.

Definition at line 30 of file AxialTrackMerger.h.

Member Typedef Documentation

◆ 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<CDCTrack&, const CDCWireHit* const>
private

Type of the base class.

Definition at line 34 of file AxialTrackMerger.h.

◆ ToVector

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

Short hand for ToRangeImpl.

Definition at line 49 of file Findlet.h.

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 ( std::vector< CDCTrack > &  axialTracks,
const std::vector< const CDCWireHit * > &  axialWireHits 
)
final

Merge tracks together. Allows for axial hits to be added as it may see fit.

Definition at line 41 of file AxialTrackMerger.cc.

43{
44 // Check quality of the track basing on holes on the trajectory;
45 // if holes exist then track is splitted
46 for (CDCTrack& track : axialTracks) {
47 if (track.size() < 5) continue;
50 }
51
52 // Update tracks before storing to DataStore
53 for (CDCTrack& track : axialTracks) {
55 }
56
57 // Remove bad tracks
60
61 // Perform tracks merging
62 this->doTracksMerging(axialTracks, allAxialWireHits);
63
64 // Remove the consumed, now empty tracks.
66}
void doTracksMerging(std::vector< CDCTrack > &axialTracks, const std::vector< const CDCWireHit * > &allAxialWireHits)
The track finding often finds two curling tracks, originating from the same particle.
Class representing a sequence of three dimensional reconstructed hits.
Definition: CDCTrack.h:41
static void deleteShortTracks(std::vector< CDCTrack > &axialTracks, double minimal_size=5)
Remove tracks that are shorter than the given number of hits.
static void normalizeTrack(CDCTrack &track)
Refit and resort the track. Unmask all hits.
static void removeHitsAfterSuperLayerBreak(CDCTrack &track)
Searches for a break in the super layer chain and remove all hits that come after that.
static void deleteTracksWithLowFitProbability(std::vector< CDCTrack > &axialTracks, double minimal_probability_for_good_fit=0.4)
Check an (improper) p-values of the tracks. If they are below the given value, delete the track from ...

◆ 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.

◆ calculateBestTrackToMerge()

WithWeight< MayBePtr< CDCTrack > > calculateBestTrackToMerge ( CDCTrack track,
ACDCTracks &  tracks 
)
staticprivate

Searches for the best candidate to merge this track to.

Determine the best track for merging with the candidate track.

Parameters
tracktrack for which we try to find merging partner
trackssearch range of tracks
Returns
a pointer to the best fit candidate including a fit probability
Return values
{nullptr,0}in case no match was found

Definition at line 89 of file AxialTrackMerger.cc.

90{
91 std::vector<WithWeight<CDCTrack*>> weightedTracks;
92 for (CDCTrack& track2 : tracks) {
93 if (&track == &track2) continue;
94 if (track2.size() < 3) continue;
95
96 double fitProb = doTracksFitTogether(track, track2);
97 if (std::isnan(fitProb)) continue;
98
99 weightedTracks.emplace_back(&track2, fitProb);
100 }
101
102 auto bestMatch = std::max_element(weightedTracks.begin(), weightedTracks.end(), LessWeight());
103 if (bestMatch == weightedTracks.end()) return {nullptr, 0};
104 else return *bestMatch;
105}
static double doTracksFitTogether(CDCTrack &track1, CDCTrack &track2)
Fits the hit content of both tracks in a common fit repeated with an annealing schedule removing far ...
Functor factory turning a binary functor and two functors into a new functor which executes the binar...
Definition: Functional.h:127

◆ doTracksFitTogether()

double doTracksFitTogether ( CDCTrack track1,
CDCTrack track2 
)
staticprivate

Fits the hit content of both tracks in a common fit repeated with an annealing schedule removing far away hits.

Returns
Some measure of fit probability

Definition at line 107 of file AxialTrackMerger.cc.

108{
109 // First check whether most of the hits from the tracks lie in the backward direction
110 // even if though track is not curling -> tracks should not be merged
111 const CDCTrajectory3D& trajectory3D1 = track1.getStartTrajectory3D();
112 const CDCTrajectory3D& trajectory3D2 = track2.getStartTrajectory3D();
113
114 const Vector2D& phi0Vec1 = trajectory3D1.getFlightDirection3DAtSupport().xy();
115 const Vector2D& phi0Vec2 = trajectory3D2.getFlightDirection3DAtSupport().xy();
116
117 int fbVote12 = 0;
118 int fbVote21 = 0;
119
120 for (const CDCRecoHit3D& recoHit3D : track1) {
121 EForwardBackward fbInfo = phi0Vec2.isForwardOrBackwardOf(recoHit3D.getRecoPos2D());
122 if (not isValid(fbInfo)) continue;
123 fbVote12 += fbInfo;
124 }
125
126 for (const CDCRecoHit3D& recoHit3D : track2) {
127 EForwardBackward fbInfo = phi0Vec1.isForwardOrBackwardOf(recoHit3D.getRecoPos2D());
128 if (not isValid(fbInfo)) continue;
129 fbVote21 += fbInfo;
130 }
131
132 if (not trajectory3D1.isCurler() and fbVote12 < 0) return NAN;
133 if (not trajectory3D2.isCurler() and fbVote21 < 0) return NAN;
134
135 // Build common hit list by copying the wire hits into one large list
136 // We use the wire hits here as we do not want them to bring
137 // their "old" reconstructed position when fitting.
138 std::vector<const CDCWireHit*> combinedWireHits;
139 combinedWireHits.reserve(track1.size() + track2.size());
140 for (const CDCRecoHit3D& hit : track1) {
141 combinedWireHits.push_back(&(hit.getWireHit()));
142 }
143 for (const CDCRecoHit3D& hit : track2) {
144 combinedWireHits.push_back(&(hit.getWireHit()));
145 }
146
147 // Sorting is done via pointer addresses (!!).
148 // This is not very stable and also not very meaningful (in terms of ordering in the track),
149 // but it does the job for unique.
150 // (the ordering is still outwards though since the wire hits are ordered like that in continuous memory)
151 std::sort(combinedWireHits.begin(), combinedWireHits.end());
152 erase_unique(combinedWireHits);
153
154 // Calculate track parameters
155 CDCTrajectory2D commonTrajectory2D;
157
158 // Approach the best fit
159 commonTrajectory2D = fitter.fit(combinedWireHits);
160 removeStrangeHits(5, combinedWireHits, commonTrajectory2D);
161 commonTrajectory2D = fitter.fit(combinedWireHits);
162 removeStrangeHits(3, combinedWireHits, commonTrajectory2D);
163 commonTrajectory2D = fitter.fit(combinedWireHits);
164 removeStrangeHits(1, combinedWireHits, commonTrajectory2D);
165 commonTrajectory2D = fitter.fit(combinedWireHits);
166 removeStrangeHits(1, combinedWireHits, commonTrajectory2D);
167 commonTrajectory2D = fitter.fit(combinedWireHits);
168
169 // Dismiss this possibility if the hit list size after all the removing of hits is even smaller
170 // than the two lists before or if the list is too small
171 if (combinedWireHits.size() <= std::max(track1.size(), track2.size())
172 or combinedWireHits.size() < 15) {
173 return NAN;
174 }
175
176 return commonTrajectory2D.getPValue();
177}
static void removeStrangeHits(double factor, std::vector< const CDCWireHit * > &wireHits, CDCTrajectory2D &trajectory)
Remove all hits that are further than factor * driftlength away from the trajectory.
Class implementing the fitter using Karimakis method.
static const CDCKarimakiFitter & getNoDriftVarianceFitter()
Static getter for a general fitter that does not use the drift length variances.
Class representing a three dimensional reconstructed hit.
Definition: CDCRecoHit3D.h:52
Particle trajectory as it is seen in xy projection represented as a circle.
double getPValue() const
Getter for p-value.
Particle full three dimensional trajectory.
bool isCurler(double factor=1) const
Checks if the trajectory leaves the outer radius of the CDC times the given tolerance factor.
Vector3D getFlightDirection3DAtSupport() const
Get the unit momentum at the start point of the trajectory.
A two dimensional vector which is equipped with functions for correct handeling of orientation relat...
Definition: Vector2D.h:32
EForwardBackward isForwardOrBackwardOf(const Vector2D &rhs) const
Indicates if the given vector is more coaligned or reverse if you looked in the direction of this vec...
Definition: Vector2D.h:493
const Vector2D & xy() const
Getter for the xy projected vector ( reference ! )
Definition: Vector3D.h:508
bool isValid(EForwardBackward eForwardBackward)
Check whether the given enum instance is one of the valid values.
EForwardBackward
Enumeration to represent the distinct possibilities of the right left passage information.

◆ doTracksMerging()

void doTracksMerging ( std::vector< CDCTrack > &  axialTracks,
const std::vector< const CDCWireHit * > &  allAxialWireHits 
)
private

The track finding often finds two curling tracks, originating from the same particle.

This function merges them.

Definition at line 68 of file AxialTrackMerger.cc.

70{
71 // Search for best matches - cannot use range for here :(.
72 for (auto itTrack = axialTracks.begin(); itTrack != axialTracks.end(); ++itTrack) {
73 CDCTrack& track = *itTrack;
74 auto followingTracks = asRange(std::next(itTrack), axialTracks.end());
75
76 WithWeight<MayBePtr<CDCTrack> > bestTrack = calculateBestTrackToMerge(track, followingTracks);
77 double fitProb = bestTrack.getWeight();
78
79 if (bestTrack != nullptr and fitProb > m_param_minFitProb) {
80 mergeTracks(track, *bestTrack, allAxialWireHits);
81 }
82 }
83
85}
static WithWeight< MayBePtr< CDCTrack > > calculateBestTrackToMerge(CDCTrack &track, ACDCTracks &tracks)
Searches for the best candidate to merge this track to.
static void mergeTracks(CDCTrack &track1, CDCTrack &track2, const std::vector< const CDCWireHit * > &allAxialWireHits)
Function to merge two track candidates.
double m_param_minFitProb
Parameter : Minimal fit probability of the common fit of two tracks to be eligible for merging.
A mixin class to attach a weight to an object.
Definition: WithWeight.h:24
Weight getWeight() const
Getter for the weight.
Definition: WithWeight.h:58

◆ 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.

◆ exposeParameters()

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

Expose the parameters to a module.

Reimplemented from Findlet< AIOTypes >.

Definition at line 32 of file AxialTrackMerger.cc.

33{
34 moduleParamList->addParameter(prefixed(prefix, "minFitProb"),
36 "Minimal fit probability of the common fit "
37 "of two tracks to be eligible for merging",
39}
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< AIOTypes >.

Definition at line 27 of file AxialTrackMerger.cc.

28{
29 return "Merges axial tracks found in the legendre search";
30}

◆ getNProcessingSignalListener()

int getNProcessingSignalListener ( )
protectedinherited

Get the number of currently registered listeners.

Definition at line 60 of file CompositeProcessingSignalListener.cc.

61{
63}

◆ initialize()

void initialize ( )
overridevirtualinherited

Receive and dispatch signal before the start of the event processing.

Reimplemented from ProcessingSignalListener.

Reimplemented in UnionVarSet< AObject >, UnionVarSet< Object >, VariadicUnionVarSet< AVarSets >, ResultStorer< Belle2::CKFToPXDResult >, ResultStorer< Belle2::CKFToSVDResult >, BaseEventTimeExtractor< RecoTrack * >, BaseEventTimeExtractor< TrackFindingCDC::CDCWireHit & >, StereoHitTrackQuadTreeMatcher< Belle2::TrackFindingCDC::HyperHough >, StereoHitTrackQuadTreeMatcher< Belle2::TrackFindingCDC::QuadraticLegendre >, StereoHitTrackQuadTreeMatcher< Belle2::TrackFindingCDC::Z0TanLambdaLegendre >, OnVarSet< Filter< ATruthVarSet::Object > >, OnVarSet< Filter< AVarSet::Object > >, OnVarSet< BaseFacetFilter >, OnVarSet< BaseFacetRelationFilter >, OnVarSet< BaseAxialSegmentPairFilter >, OnVarSet< BaseSegmentRelationFilter >, OnVarSet< BaseTrackRelationFilter >, OnVarSet< BaseSegmentPairRelationFilter >, MCSymmetric< BaseAxialSegmentPairFilter >, MCSymmetric< BaseFacetFilter >, MCSymmetric< BaseFacetRelationFilter >, MCSymmetric< BaseSegmentPairFilter >, MCSymmetric< BaseSegmentPairRelationFilter >, MCSymmetric< BaseSegmentRelationFilter >, MCSymmetric< BaseSegmentTripleFilter >, MCSymmetric< BaseSegmentTripleRelationFilter >, MCSymmetric< BaseTrackRelationFilter >, StoreArrayLoader< const Belle2::SpacePoint >, StoreArrayLoader< DataStoreInputTypeRefType >, 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 >, RelationVarSet< ABaseVarSet >, QualityIndicatorFilter, TwoHitVirtualIPQIFilter, MultiHoughSpaceFastInterceptFinder, RawTrackCandCleaner< AHit >, RawTrackCandCleaner< Belle2::vxdHoughTracking::VXDHoughState >, RecoTrackStorer, ROIFinder, SingleHoughSpaceFastInterceptFinder, SpacePointLoaderAndPreparer, TrackCandidateOverlapResolver, and TrackCandidateResultRefiner.

Definition at line 15 of file CompositeProcessingSignalListener.cc.

16{
19 psl->initialize();
20 }
21}
virtual void initialize()
Receive signal before the start of the event processing.

◆ mergeTracks()

void mergeTracks ( CDCTrack track1,
CDCTrack track2,
const std::vector< const CDCWireHit * > &  allAxialWireHits 
)
staticprivate

Function to merge two track candidates.

The hits of track2 are deleted and transfered to track1 and the track1 is resorted. The method also applys some postprocessing and splits the track1 in case it appears to contain two back-to-back arms,

Definition at line 192 of file AxialTrackMerger.cc.

195{
196 if (&track1 == &track2) return;
197
198 CDCTrajectory2D trajectory2D = track1.getStartTrajectory3D().getTrajectory2D();
199 for (const CDCRecoHit3D& orgRecoHit3D : track2) {
200 CDCRecoHit3D recoHit3D = CDCRecoHit3D::reconstruct(orgRecoHit3D.getRLWireHit(), trajectory2D);
201 track1.push_back(std::move(recoHit3D));
202 }
203 track2.clear();
204
206
208
210
211 for (CDCRecoHit3D& recoHit3D : track2) {
212 recoHit3D.setRecoPos3D({recoHit3D.getRefPos2D(), 0});
213 recoHit3D.setRLInfo(ERightLeft::c_Unknown);
214 }
215
217 bool success = AxialTrackUtil::postprocessTrack(track2, allAxialWireHits);
218 if (not success) {
219 for (const CDCRecoHit3D& recoHit3D : track2) {
220 recoHit3D.getWireHit()->setTakenFlag(false);
221 }
222 track2.clear();
223 }
224}
void setTakenFlag(bool setTo=true)
Sets the taken flag to the given value. Default value true.
const CDCWireHit & getWireHit() const
Getter for the wire hit.
Definition: CDCRecoHit3D.h:238
void setRecoPos3D(const Vector3D &recoPos3D)
Setter for the 3d position of the hit.
Definition: CDCRecoHit3D.h:291
static CDCRecoHit3D reconstruct(const CDCRecoHit2D &recoHit2D, const CDCTrajectory2D &trajectory2D)
Reconstructs the three dimensional hit from the two dimensional and the two dimensional trajectory.
Definition: CDCRecoHit3D.cc:56
const Vector2D & getRefPos2D() const
Getter for the reference position of the wire.
Definition: CDCRecoHit3D.h:279
void setRLInfo(ERightLeft rlInfo)
Setter the right left passage information.
Definition: CDCRecoHit3D.h:273
static bool postprocessTrack(CDCTrack &track, const std::vector< const CDCWireHit * > &allAxialWireHits)
Perform all track postprocessing - return whether the track is considered good after the postprocessi...
static std::vector< CDCRecoHit3D > splitBack2BackTrack(CDCTrack &track)
Tries to split back-to-back tracks into two different tracks.

◆ removeStrangeHits()

void removeStrangeHits ( double  factor,
std::vector< const CDCWireHit * > &  wireHits,
CDCTrajectory2D trajectory 
)
staticprivate

Remove all hits that are further than factor * driftlength away from the trajectory.

Parameters
factorgives a number how far the hit is allowed to be.
wireHitsthe wirehits that should be considered
trajectorythe reference trajectory

Definition at line 179 of file AxialTrackMerger.cc.

182{
183 auto farFromTrajectory = [&trajectory2D, &factor](const CDCWireHit * wireHit) {
184 Vector2D pos2D = wireHit->getRefPos2D();
185 double driftLength = wireHit->getRefDriftLength();
186 double dist = std::fabs(trajectory2D.getDist2D(pos2D)) - driftLength;
187 return std::fabs(dist) > driftLength * factor;
188 };
189 erase_remove_if(wireHits, farFromTrajectory);
190}
Class representing a hit wire in the central drift chamber.
Definition: CDCWireHit.h:55

◆ 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_minFitProb

double m_param_minFitProb = 0.85
private

Parameter : Minimal fit probability of the common fit of two tracks to be eligible for merging.

Definition at line 95 of file AxialTrackMerger.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: