Belle II Software prerelease-11-00-00a
CDCCKFStateCreator Class Referenceabstract

Create CKF states, based on the current path. Perform some basic selection at this stage (based on phi, max. jump of layers) More...

#include <CDCCKFStateCreator.h>

Inheritance diagram for CDCCKFStateCreator:
Collaboration diagram for CDCCKFStateCreator:

Classes

struct  CDCCKFWireHitCache
 Store basic wire info for faster access. More...
 

Public Types

using IOTypes
 Types that should be served to apply on invocation.
 
using IOTypes
 Types that should be served to apply on invocation.
 
using IOVectors
 Vector types that should be served to apply on invocation.
 
using IOVectors
 Vector types that should be served to apply on invocation.
 

Public Member Functions

void setMaximalLayerJump (int maximalLayerJump)
 Set maximal layer jump for state creation.
 
void setMaximalLayerJumpBackwardSeed (int maximalLayerJumpBackwardSeed)
 Set maximal layer jump for backward seed tracks.
 
void setMaximalDeltaPhi (double maximalDeltaPhi)
 Set maximal delta phi for state creation.
 
void setHitFindingDirection (const std::string &hitFindingDirection)
 Set hit finding direction.
 
void exposeParameters (ModuleParamList *moduleParamList, const std::string &prefix) override
 Expose the parameters of the sub findlets.
 
void beginEvent () override
 Clear the wireHit cache.
 
void apply (std::vector< CDCCKFState > &nextStates, const CDCCKFPath &path, const std::vector< const TrackingUtilities::CDCWireHit * > &wireHits) override
 Main method of the findlet. Select + create states (output parameter nextStates) suitable for the input path, based on input wireHits.
 
virtual std::string getDescription ()
 Brief description of the purpose of the concrete findlet.
 
virtual std::string getDescription ()
 Brief description of the purpose of the concrete 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 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
 Short hand for ToRangeImpl.
 
using ToVector
 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 = TrackingUtilities::Findlet<CDCCKFState, const CDCCKFState, const TrackingUtilities::CDCWireHit* const>
 Parent class.
 

Private Attributes

int m_maximalLayerJump = 2
 Maximum allowed step over layers.
 
int m_maximalLayerJump_backwardSeed = 3
 Maximum allowed step over layers (if outside->in CKF) for first step after seed (e.g. ECLShower)
 
double m_maximalDeltaPhi = TMath::Pi() / 8
 Maximal distance in phi between the path last hit/seed and the candidate hit.
 
std::string m_param_writeOutDirectionAsString = "forward"
 Parameter for the direction in which the tracks are built.
 
TrackingUtilities::EForwardBackward m_param_writeOutDirection = TrackingUtilities::EForwardBackward::c_Unknown
 Direction parameter converted from the string parameters.
 
bool doForward = true
 Direction parameter converted to boolean for convenience.
 
std::vector< CDCCKFWireHitCachem_wireHitCache = {}
 Cache to store frequently used information.
 
std::vector< ProcessingSignalListener * > m_subordinaryProcessingSignalListeners
 References to subordinary signal processing listener contained in this findlet.
 
bool m_initialized
 Flag to keep track whether initialization happened before.
 
bool m_terminated
 Flag to keep track whether termination happened before.
 
std::string m_initializedAs
 Name of the type during initialisation.
 

Detailed Description

Create CKF states, based on the current path. Perform some basic selection at this stage (based on phi, max. jump of layers)

Definition at line 33 of file CDCCKFStateCreator.h.

Member Typedef Documentation

◆ IOTypes [1/2]

using IOTypes
inherited

Types that should be served to apply on invocation.

Definition at line 30 of file Findlet.h.

◆ IOTypes [2/2]

using IOTypes
inherited

Types that should be served to apply on invocation.

Definition at line 30 of file Findlet.h.

◆ IOVectors [1/2]

using IOVectors
inherited

Vector types that should be served to apply on invocation.

Definition at line 53 of file Findlet.h.

◆ IOVectors [2/2]

using IOVectors
inherited

Vector types that should be served to apply on invocation.

Definition at line 53 of file Findlet.h.

◆ Super

Parent class.

Definition at line 38 of file CDCCKFStateCreator.h.

◆ ToVector [1/2]

using ToVector
protectedinherited

Short hand for ToRangeImpl.

Definition at line 49 of file Findlet.h.

◆ ToVector [2/2]

using ToVector
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 53 of file CompositeProcessingSignalListener.cc.

56{
58}
Interface for a minimal algorithm part that wants to expose some parameters to a module.
Definition Findlet.h:26

◆ apply()

void apply ( std::vector< CDCCKFState > & nextStates,
const CDCCKFPath & path,
const std::vector< const TrackingUtilities::CDCWireHit * > & wireHits )
inlineoverride

Main method of the findlet. Select + create states (output parameter nextStates) suitable for the input path, based on input wireHits.

Definition at line 113 of file CDCCKFStateCreator.h.

115 {
116 // TODO: as we do not need any information on the current state (track state) of the path, we could in principle
117 // TODO: precalculate everything in here
118
119 // Create cache over wirehits, if empty:
120 if (m_wireHitCache.empty()) {
121 const size_t nHits = wireHits.size();
122 m_wireHitCache.reserve(nHits);
123 for (auto hitPtr : wireHits) {
124 // to speed things up, don't consider background/taken hits at all (and not just in the loop below).
125 // I can't just remove them from the list, otherwise the relation to the wireHits is broken
126 // so set the layer index to a high number.
127 if (hitPtr->getAutomatonCell().hasBackgroundFlag() || hitPtr->getAutomatonCell().hasTakenFlag()) {
128 m_wireHitCache.push_back(CDCCKFWireHitCache{99999, 0.});
129 } else {
130 m_wireHitCache.push_back(CDCCKFWireHitCache{hitPtr->getWire().getICLayer(), hitPtr->getRefPos2D().phi()});
131 }
132 }
133 }
134
135 // Cache last-on-the-path state info too:
136 const auto& lastState = path.back();
137 double lastPhi = 0;
138 double lastICLayer = -1;
139 if (lastState.isSeed()) {
140 if (doForward) {
141 lastICLayer = 0;
142 } else {
143 const auto& wireTopology = CDC::CDCWireTopology::getInstance();
144 const auto& wires = wireTopology.getWires();
145 const float maxForwardZ = wires.back().getForwardZ(); // 157.615
146 const float maxBackwardZ = wires.back().getBackwardZ(); // -72.0916
147
148 const TrackingUtilities::Vector3D seedPos(lastState.getSeed()->getPositionSeed());
149 const float seedPosZ = seedPos.z();
150
151 if (seedPosZ < maxForwardZ && seedPosZ > maxBackwardZ) {
152 lastICLayer = 56;
153 } else {
154 // do straight extrapolation of seed momentum to CDC outer walls
155 TrackingUtilities::Vector3D seedMomZOne(lastState.getSeed()->getMomentumSeed());
156 seedMomZOne = seedMomZOne / seedMomZOne.z();
157 // const float maxZ = seedPosZ > 0 ? maxForwardZ : maxBackwardZ;
158 // const TrackingUtilities::Vector3D extrapolatedPos = seedPos - seedMom / seedMom.norm() * (seedPosZ - maxZ);
159
160 // find closest iCLayer
161 float minDist = 99999;
162 for (const auto& wire : wires) {
163 const float maxZ = seedPosZ > 0 ? wire.getForwardZ() : wire.getBackwardZ();
164 const TrackingUtilities::Vector3D extrapolatedPos = seedPos - seedMomZOne * (seedPosZ - maxZ);
165
166 const auto distance = wire.getDistance(extrapolatedPos);
167 if (distance < minDist) {
168 minDist = distance;
169 lastICLayer = wire.getICLayer();
170 }
171 }
172 B2DEBUG(29, lastICLayer << " (d=" << minDist << ")");
173 }
174 }
175 } else {
176 lastPhi = lastState.getWireHit()->getRefPos2D().phi();
177 lastICLayer = lastState.getWireHit()->getWire().getICLayer();
178 }
179
180 // Get sorted vector of wireHits on the path for faster search
181 std::vector<const TrackingUtilities::CDCWireHit*> wireHitsOnPath;
182 for (auto const& state : path) {
183 if (! state.isSeed()) {
184 wireHitsOnPath.push_back(state.getWireHit());
185 }
186 }
187 std::sort(wireHitsOnPath.begin(), wireHitsOnPath.end());
188
189 size_t nHits = wireHits.size();
190 for (size_t i = 0; i < nHits; i++) {
191 // adjust direction of loop (minimal speed gain)
192 int idx = doForward ? i : nHits - i - 1;
193
194 const auto iCLayer = m_wireHitCache[idx].icLayer; // wireHit->getWire().getICLayer();
195 if (m_param_writeOutDirection == TrackingUtilities::EForwardBackward::c_Backward && lastState.isSeed()) {
196 if (std::abs(lastICLayer - iCLayer) > m_maximalLayerJump_backwardSeed) {
197 continue;
198 }
199 } else if (std::abs(lastICLayer - iCLayer) > m_maximalLayerJump) {
200 continue;
201 }
202
203 if (! lastState.isSeed()) {
204 double deltaPhi = TrackingUtilities::AngleUtil::normalised(lastPhi - m_wireHitCache[idx].phi);
205 if (fabs(deltaPhi) > m_maximalDeltaPhi) {
206 continue;
207 }
208 }
209
210 const TrackingUtilities::CDCWireHit* wireHit = wireHits[idx];
211
212 if (std::binary_search(wireHitsOnPath.begin(), wireHitsOnPath.end(), wireHit)) {
213 continue;
214 }
215
216 nextStates.emplace_back(wireHit);
217 }
218 }

◆ beginEvent()

void beginEvent ( )
inlineoverridevirtual

Clear the wireHit cache.

Reimplemented from ProcessingSignalListener.

Definition at line 95 of file CDCCKFStateCreator.h.

96 {
97 Super::beginEvent();
98 m_wireHitCache.clear();
99
100 // Determine direction of track building
101 m_param_writeOutDirection = fromString(m_param_writeOutDirectionAsString);
102
103 if (m_param_writeOutDirection == TrackingUtilities::EForwardBackward::c_Forward) {
104 doForward = true;
105 } else if (m_param_writeOutDirection == TrackingUtilities::EForwardBackward::c_Backward) {
106 doForward = false;
107 } else {
108 B2FATAL("CDCCKFStateCreator: No valid direction specified. Please use forward/backward.");
109 }
110 }
TrackingUtilities::EForwardBackward fromString(const std::string &directionString)
Helper function to turn a direction string into a valid forward backward information.

◆ beginRun()

void beginRun ( )
overrideinherited

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

Definition at line 33 of file CompositeProcessingSignalListener.cc.

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

◆ endRun()

void endRun ( )
overrideinherited

Receive and dispatch signal for the end of the run.

Definition at line 39 of file CompositeProcessingSignalListener.cc.

40{
42 psl->endRun();
43 }
45}
void endRun() override
Receive and dispatch signal for the end of the run.
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 CompositeProcessingSignalListener.

Definition at line 82 of file CDCCKFStateCreator.h.

83 {
84 moduleParamList->addParameter(TrackingUtilities::prefixed(prefix, "maximalLayerJump"),
85 m_maximalLayerJump, "Maximal jump over N layers", m_maximalLayerJump);
86 moduleParamList->addParameter(TrackingUtilities::prefixed(prefix, "maximalLayerJumpBackwardSeed"),
87 m_maximalLayerJump_backwardSeed, "Maximal jump over N layers", m_maximalLayerJump_backwardSeed);
88 moduleParamList->addParameter(TrackingUtilities::prefixed(prefix, "maximalDeltaPhi"),
89 m_maximalDeltaPhi, "Maximal distance in phi between wires for Z=0 plane", m_maximalDeltaPhi);
90 moduleParamList->addParameter(TrackingUtilities::prefixed(prefix, "hitFindingDirection"),
91 m_param_writeOutDirectionAsString, "Start from innermost/outermost CDC layers", m_param_writeOutDirectionAsString);
92 }

◆ getDescription() [1/2]

virtual std::string getDescription ( )
inlinevirtualinherited

Brief description of the purpose of the concrete findlet.

Definition at line 60 of file Findlet.h.

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

◆ getDescription() [2/2]

virtual std::string getDescription ( )
inlinevirtualinherited

Brief description of the purpose of the concrete 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 56 of file CompositeProcessingSignalListener.cc.

61{
63}

◆ initialize()

void initialize ( )
overrideinherited

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

Definition at line 30 of file CompositeProcessingSignalListener.cc.

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

◆ setHitFindingDirection()

void setHitFindingDirection ( const std::string & hitFindingDirection)
inline

Set hit finding direction.

Parameters
hitFindingDirectionStart from innermost/outermost CDC layers

Definition at line 76 of file CDCCKFStateCreator.h.

77 {
78 m_param_writeOutDirectionAsString = hitFindingDirection;
79 }

◆ setMaximalDeltaPhi()

void setMaximalDeltaPhi ( double maximalDeltaPhi)
inline

Set maximal delta phi for state creation.

Parameters
maximalDeltaPhiMaximum distance in phi between wires for Z=0 plane

Definition at line 70 of file CDCCKFStateCreator.h.

70{ m_maximalDeltaPhi = maximalDeltaPhi; }

◆ setMaximalLayerJump()

void setMaximalLayerJump ( int maximalLayerJump)
inline

Set maximal layer jump for state creation.

Parameters
maximalLayerJumpMaximum number of layers to jump

Definition at line 55 of file CDCCKFStateCreator.h.

55{ m_maximalLayerJump = maximalLayerJump; }

◆ setMaximalLayerJumpBackwardSeed()

void setMaximalLayerJumpBackwardSeed ( int maximalLayerJumpBackwardSeed)
inline

Set maximal layer jump for backward seed tracks.

Parameters
maximalLayerJumpBackwardSeedMaximum number of layers to jump for backward seeds

Definition at line 61 of file CDCCKFStateCreator.h.

62 {
63 m_maximalLayerJump_backwardSeed = maximalLayerJumpBackwardSeed;
64 }

◆ terminate()

void terminate ( )
overrideinherited

Receive and dispatch Signal for termination of the event processing.

Definition at line 42 of file CompositeProcessingSignalListener.cc.

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

Member Data Documentation

◆ doForward

bool doForward = true
private

Direction parameter converted to boolean for convenience.

Definition at line 232 of file CDCCKFStateCreator.h.

◆ m_initialized

bool m_initialized
privateinherited

Flag to keep track whether initialization happened 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_maximalDeltaPhi

double m_maximalDeltaPhi = TMath::Pi() / 8
private

Maximal distance in phi between the path last hit/seed and the candidate hit.

Definition at line 226 of file CDCCKFStateCreator.h.

◆ m_maximalLayerJump

int m_maximalLayerJump = 2
private

Maximum allowed step over layers.

Definition at line 222 of file CDCCKFStateCreator.h.

◆ m_maximalLayerJump_backwardSeed

int m_maximalLayerJump_backwardSeed = 3
private

Maximum allowed step over layers (if outside->in CKF) for first step after seed (e.g. ECLShower)

Definition at line 224 of file CDCCKFStateCreator.h.

◆ m_param_writeOutDirection

TrackingUtilities::EForwardBackward m_param_writeOutDirection = TrackingUtilities::EForwardBackward::c_Unknown
private

Direction parameter converted from the string parameters.

Definition at line 230 of file CDCCKFStateCreator.h.

◆ m_param_writeOutDirectionAsString

std::string m_param_writeOutDirectionAsString = "forward"
private

Parameter for the direction in which the tracks are built.

Definition at line 228 of file CDCCKFStateCreator.h.

◆ m_subordinaryProcessingSignalListeners

std::vector<ProcessingSignalListener*> m_subordinaryProcessingSignalListeners
privateinherited

References to subordinary signal processing listener contained in this findlet.

Definition at line 60 of file CompositeProcessingSignalListener.h.

◆ m_terminated

bool m_terminated
privateinherited

Flag to keep track whether termination happened before.

Definition at line 55 of file ProcessingSignalListener.h.

◆ m_wireHitCache

std::vector<CDCCKFWireHitCache> m_wireHitCache = {}
private

Cache to store frequently used information.

Definition at line 235 of file CDCCKFStateCreator.h.

235{};

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