Belle II Software development
CDCCKFStateFilter Class Referenceabstract

A stack of pre-, helix-extrapolation- , Kalman-extrapolation- and Kalman-update-filters. More...

#include <CDCCKFStateFilter.h>

Inheritance diagram for CDCCKFStateFilter:
Findlet< const CDCCKFState, CDCCKFState > CompositeProcessingSignalListener ProcessingSignalListener

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

 CDCCKFStateFilter ()
 Add all sub findlets.
 
void exposeParameters (ModuleParamList *moduleParamList, const std::string &prefix) override
 Expose the parameters of the sub findlets.
 
void apply (const CDCCKFPath &path, std::vector< CDCCKFState > &nextStates) override
 Apply the findlet and do the state selection.
 
virtual std::string getDescription ()
 Brief description of the purpose of the concret findlet.
 
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

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 = ProcessingSignalListener
 Type of the base class.
 

Private Member Functions

void reconstruct (CDCCKFState &state, const TrackFindingCDC::CDCTrajectory3D &trajectory, const double lastArcLength) const
 Helper function to reconstruct the arc length and the hit distance of a state according to the trajectory.
 

Private Attributes

size_t m_maximalHitCandidates = 4
 Parameter: max number of candidates.
 
TrackFindingCDC::ChooseableFilter< CDCStateFilterFactorym_preFilter
 Pre Filter.
 
TrackFindingCDC::ChooseableFilter< CDCStateFilterFactorym_basicFilter
 Basic Filter (uses helix extrapolation)
 
TrackFindingCDC::ChooseableFilter< CDCStateFilterFactorym_extrapolationFilter
 Extrapolation Filter (after Kalman extrapolation)
 
TrackFindingCDC::ChooseableFilter< CDCStateFilterFactorym_finalSelection
 Final Selection Filter (after Kalman update)
 
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

A stack of pre-, helix-extrapolation- , Kalman-extrapolation- and Kalman-update-filters.

Definition at line 35 of file CDCCKFStateFilter.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 = ProcessingSignalListener
privateinherited

Type of the base class.

Definition at line 25 of file CompositeProcessingSignalListener.h.

◆ ToVector

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

Short hand for ToRangeImpl.

Definition at line 49 of file Findlet.h.

Constructor & Destructor Documentation

◆ CDCCKFStateFilter()

CDCCKFStateFilter ( )
inline

Add all sub findlets.

Definition at line 38 of file CDCCKFStateFilter.h.

39 {
44 }
TrackFindingCDC::ChooseableFilter< CDCStateFilterFactory > m_basicFilter
Basic Filter (uses helix extrapolation)
TrackFindingCDC::ChooseableFilter< CDCStateFilterFactory > m_finalSelection
Final Selection Filter (after Kalman update)
TrackFindingCDC::ChooseableFilter< CDCStateFilterFactory > m_extrapolationFilter
Extrapolation Filter (after Kalman extrapolation)
TrackFindingCDC::ChooseableFilter< CDCStateFilterFactory > m_preFilter
Pre Filter.
void addProcessingSignalListener(ProcessingSignalListener *psl)
Register a processing signal listener to be notified.

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 CDCCKFPath path,
std::vector< CDCCKFState > &  nextStates 
)
inlineoverride

Apply the findlet and do the state selection.

Definition at line 60 of file CDCCKFStateFilter.h.

61 {
62 const CDCCKFState& lastState = path.back();
63 const TrackFindingCDC::CDCTrajectory3D& trajectory = lastState.getTrajectory();
64
65 TrackFindingCDC::Weight weight;
66
67 B2DEBUG(29, "On layer: " << (lastState.isSeed() ? -1 : lastState.getWireHit()->getWire().getICLayer()));
68
69 for (CDCCKFState& nextState : nextStates) {
70 B2DEBUG(29, "Checking layer: " << nextState.getWireHit()->getWire().getICLayer());
71
72 weight = m_preFilter({&path, &nextState});
73 nextState.setWeight(weight);
74 if (std::isnan(weight)) {
75 B2DEBUG(29, "Fails PreFilter");
76 continue;
77 }
78
79 // Do a reconstruction based on the helix extrapolation from the last hit
80 reconstruct(nextState, trajectory, lastState.getArcLength());
81
82 weight = m_basicFilter({&path, &nextState});
83 nextState.setWeight(weight);
84 if (std::isnan(weight)) {
85 B2DEBUG(29, "Fails BasicFilter");
86 continue;
87 }
88
89 // Extrapolate and update
90 weight = m_extrapolationFilter({&path, &nextState});
91 nextState.setWeight(weight);
92 if (std::isnan(weight)) {
93 B2DEBUG(29, "Fails ExtrapolationFilter");
94 continue;
95 }
96
97 // Do a final hit selection based on the new state
98 const TrackFindingCDC::CDCTrajectory3D& thisTrajectory = nextState.getTrajectory();
99 reconstruct(nextState, thisTrajectory, nextState.getArcLength());
100
101 weight = m_finalSelection({&path, &nextState});
102 nextState.setWeight(weight);
103 if (std::isnan(weight)) {
104 B2DEBUG(29, "Fails FinalFilter");
105 continue;
106 }
107 }
108
109 B2DEBUG(29, "Starting with " << nextStates.size() << " possible hits");
110
111 TrackFindingCDC::erase_remove_if(nextStates,
112 TrackFindingCDC::Composition<TrackFindingCDC::IsNaN, TrackFindingCDC::GetWeight>());
113
114 B2DEBUG(29, "Now have " << nextStates.size());
115
116 std::sort(nextStates.begin(), nextStates.end(), TrackFindingCDC::GreaterWeight());
117
118 TrackFindingCDC::only_best_N(nextStates, m_maximalHitCandidates);
119 }
size_t m_maximalHitCandidates
Parameter: max number of candidates.
void reconstruct(CDCCKFState &state, const TrackFindingCDC::CDCTrajectory3D &trajectory, const double lastArcLength) const
Helper function to reconstruct the arc length and the hit distance of a state according to the trajec...

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

◆ 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 
)
inlineoverridevirtual

Expose the parameters of the sub findlets.

Reimplemented from Findlet< const CDCCKFState, CDCCKFState >.

Definition at line 48 of file CDCCKFStateFilter.h.

49 {
50 moduleParamList->addParameter(TrackFindingCDC::prefixed(prefix, "maximalHitCandidates"),
51 m_maximalHitCandidates, "Maximal hit candidates to test",
53 m_preFilter.exposeParameters(moduleParamList, TrackFindingCDC::prefixed(prefix, "pre"));
54 m_basicFilter.exposeParameters(moduleParamList, TrackFindingCDC::prefixed(prefix, "basic"));
55 m_extrapolationFilter.exposeParameters(moduleParamList, TrackFindingCDC::prefixed(prefix, "extrapolation"));
56 m_finalSelection.exposeParameters(moduleParamList, TrackFindingCDC::prefixed(prefix, "final"));
57 }

◆ getDescription()

virtual std::string getDescription ( )
inlinevirtualinherited

Brief description of the purpose of the concret findlet.

Definition at line 60 of file Findlet.h.

61 {
62 return "(no description)";
63 }

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

◆ reconstruct()

void reconstruct ( CDCCKFState state,
const TrackFindingCDC::CDCTrajectory3D trajectory,
const double  lastArcLength 
) const
inlineprivate

Helper function to reconstruct the arc length and the hit distance of a state according to the trajectory.

Definition at line 134 of file CDCCKFStateFilter.h.

135 {
136 // TODO: actually we do not need to do any trajectory creation here. We could save some computing time!
137 const TrackFindingCDC::CDCTrajectory2D& trajectory2D = trajectory.getTrajectory2D();
138 const TrackFindingCDC::CDCTrajectorySZ& trajectorySZ = trajectory.getTrajectorySZ();
139
140 const TrackFindingCDC::CDCWireHit* wireHit = state.getWireHit();
141
142 TrackFindingCDC::Vector2D recoPos2D;
143 if (wireHit->isAxial()) {
144 recoPos2D = wireHit->reconstruct2D(trajectory2D);
145 } else {
146 const TrackFindingCDC::CDCWire& wire = wireHit->getWire();
147 const TrackFindingCDC::Vector2D& posOnXYPlane = wireHit->reconstruct2D(trajectory2D);
148
149 const double arcLength = trajectory2D.calcArcLength2D(posOnXYPlane);
150 const double z = trajectorySZ.mapSToZ(arcLength);
151
152 const TrackFindingCDC::Vector2D& wirePos2DAtZ = wire.getWirePos2DAtZ(z);
153
154 const TrackFindingCDC::Vector2D& recoPosOnTrajectory = trajectory2D.getClosest(wirePos2DAtZ);
155 const double driftLength = wireHit->getRefDriftLength();
156 TrackFindingCDC::Vector2D disp2D = recoPosOnTrajectory - wirePos2DAtZ;
157 disp2D.normalizeTo(driftLength);
158 recoPos2D = wirePos2DAtZ + disp2D;
159 }
160
161 const double arcLength = trajectory2D.calcArcLength2D(recoPos2D);
162 const double z = trajectorySZ.mapSToZ(arcLength);
163 const double distanceToHit = trajectory2D.getDist2D(recoPos2D);
164
165 state.setArcLength(lastArcLength + arcLength);
166 state.setHitDistance(distanceToHit);
167 state.setReconstructedZ(z);
168 }

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

Basic Filter (uses helix extrapolation)

Definition at line 127 of file CDCCKFStateFilter.h.

◆ m_extrapolationFilter

Extrapolation Filter (after Kalman extrapolation)

Definition at line 129 of file CDCCKFStateFilter.h.

◆ m_finalSelection

Final Selection Filter (after Kalman update)

Definition at line 131 of file CDCCKFStateFilter.h.

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

size_t m_maximalHitCandidates = 4
private

Parameter: max number of candidates.

Definition at line 123 of file CDCCKFStateFilter.h.

◆ m_preFilter

Pre Filter.

Definition at line 125 of file CDCCKFStateFilter.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 file: