Belle II Software development
AxialTrackCreatorSegmentHough Class Referenceabstract

Generates axial tracks from segments using the hough algorithm. More...

#include <AxialTrackCreatorSegmentHough.h>

Inheritance diagram for AxialTrackCreatorSegmentHough:
Findlet< const TrackingUtilities::CDCSegment2D, TrackingUtilities::CDCTrack > CompositeProcessingSignalListener ProcessingSignalListener

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

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
 Initialize the findlet before event processing.
 
void apply (const std::vector< TrackingUtilities::CDCSegment2D > &segments, std::vector< TrackingUtilities::CDCTrack > &tracks) final
 Generates the tracks from the given segments into the output argument.
 
void terminate () final
 Cleanup the findlet after event processing.
 
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.
 

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<const TrackingUtilities::CDCSegment2D, TrackingUtilities::CDCTrack>
 Type of the base class.
 
using SimpleSegmentPhi0ImpactCurvHoughTree
 Type of the hough space tree search.
 

Private Attributes

double m_param_minNHits = 40
 Parameter: Absolute minimal number of hits to make an axial track.
 
double m_param_minFractionNHits = 0.5
 Parameter: Minimal number of hits as a fraction of the total hits in the event.
 
int m_param_maxLevel = 12
 Parameter: Level of divisions in the hough space.
 
std::vector< float > m_param_curvBounds {{ -0.13, 0.13}}
 Parameter: Curvature bounds of the hough space.
 
std::vector< float > m_param_impactBounds {{ -100, 100}}
 Parameter: Impact parameter bounds of the hough space.
 
int m_param_discretePhi0Width = 2
 Parameter: Width of the phi0 bins at the lowest level of the hough space.
 
int m_param_discretePhi0Overlap = 1
 Parameter: Overlap of the phi0 bins at the lowest level of the hough space.
 
int m_param_discreteImpactWidth = 2
 Parameter: Width of the impact bins at the lowest level of the hough space.
 
int m_param_discreteImpactOverlap = 1
 Parameter: Overlap of the impact bins at the lowest level of the hough space.
 
int m_param_discreteCurvWidth = 2
 Parameter: Width of the curvature bins at the lowest level of the hough space.
 
int m_param_discreteCurvOverlap = 1
 Parameter: Overlap of the curvature bins at the lowest level of the hough space.
 
std::unique_ptr< SimpleSegmentPhi0ImpactCurvHoughTreem_houghTree
 The hough space tree search.
 
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 happened before.
 
bool m_terminated = false
 Flag to keep track whether termination happened before.
 
std::string m_initializedAs
 Name of the type during initialisation.
 

Static Private Attributes

static const int c_phi0Divisions = 2
 Fixed parameter: Number of divisions in the phi0 direction.
 
static const int c_impactDivisions = 2
 Fixed parameter: Number of divisions in the impact direction.
 
static const int c_curvDivisions = 2
 Fixed parameter: Number of divisions in the curv direction.
 

Detailed Description

Generates axial tracks from segments using the hough algorithm.

Definition at line 32 of file AxialTrackCreatorSegmentHough.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.

◆ SimpleSegmentPhi0ImpactCurvHoughTree

Initial value:
SimpleSegmentHoughTree<InPhi0ImpactCurvBox, c_phi0Divisions, c_impactDivisions, c_curvDivisions>

Type of the hough space tree search.

Definition at line 100 of file AxialTrackCreatorSegmentHough.h.

◆ Super

Type of the base class.

Definition at line 37 of file AxialTrackCreatorSegmentHough.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 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< TrackingUtilities::CDCSegment2D > & segments,
std::vector< TrackingUtilities::CDCTrack > & tracks )
final

Generates the tracks from the given segments into the output argument.

Setting trajectories

Definition at line 127 of file AxialTrackCreatorSegmentHough.cc.

129{
130 m_houghTree->fell();
131
132 size_t nAxialHits = 0;
133 std::vector<const CDCSegment2D*> ptrAxialSegments;
134 ptrAxialSegments.reserve(segments.size());
135
136 for (const CDCSegment2D& segment : segments) {
137 if (segment.getStereoKind() == EStereoKind::c_Axial) {
138 ptrAxialSegments.push_back(&segment);
139 nAxialHits += segment.size();
140 }
141 }
142
143 m_houghTree->seed(ptrAxialSegments);
145
146 Weight minWeight = std::min(m_param_minNHits, nAxialHits * m_param_minFractionNHits);
147
148 using Candidate = std::pair<HoughBox, std::vector<const CDCSegment2D*> >;
149 std::vector<Candidate> candidates = m_houghTree->findBest(minWeight);
150
151 for (const Candidate& candidate : candidates) {
152 const CDCRiemannFitter& fitter = CDCRiemannFitter::getFitter();
153 CDCObservations2D observations;
154
155 const HoughBox& foundHoughBox = candidate.first;
156 const std::vector<const CDCSegment2D*>& foundSegments = candidate.second;
157 for (const CDCSegment2D* segment : foundSegments) {
158 observations.appendRange(*segment);
159 }
160 CDCTrajectory2D trajectory2D = fitter.fit(observations);
161
162 // Check if the circle has been fitted reverse to the hough box by accident
163 {
164 double curv = trajectory2D.getCurvature();
165 const std::array<DiscreteCurv, 2>& curvs = foundHoughBox.getBounds<DiscreteCurv>();
166 float lowerCurv = *(curvs[0]);
167 float upperCurv = *(curvs[1]);
168 if (static_cast<double>(ESignUtil::common(lowerCurv, upperCurv)) * curv < 0) {
169 trajectory2D.reverse();
170 }
171 }
172
173 CDCTrack track;
174 for (const CDCSegment2D* segment : foundSegments) {
175 for (const CDCRecoHit2D& recoHit2D : *segment) {
176 track.push_back(CDCRecoHit3D::reconstruct(recoHit2D, trajectory2D));
177 }
178 }
179 track.sortByArcLength2D();
180
182 if (track.empty()) continue;
183 const CDCRecoHit3D& startRecoHit3D = track.front();
184 CDCTrajectory3D startTrajectory3D(trajectory2D);
185 startTrajectory3D.setLocalOrigin(startRecoHit3D.getRecoPos3D());
186 track.setStartTrajectory3D(startTrajectory3D);
187
188 const CDCRecoHit3D& endRecoHit3D = track.back();
189 CDCTrajectory3D endTrajectory3D(trajectory2D);
190 endTrajectory3D.setLocalOrigin(endRecoHit3D.getRecoPos3D());
191 track.setEndTrajectory3D(endTrajectory3D);
192
193 tracks.push_back(std::move(track));
194 }
195}
double m_param_minNHits
Parameter: Absolute minimal number of hits to make an axial track.
std::unique_ptr< SimpleSegmentPhi0ImpactCurvHoughTree > m_houghTree
The hough space tree search.
double m_param_minFractionNHits
Parameter: Minimal number of hits as a fraction of the total hits in the event.
std::size_t appendRange(const TrackingUtilities::CDCSegment2D &segment2D)
Appends all reconstructed hits from the two dimensional segment.
static const CDCRiemannFitter & getFitter()
Static getter for a general Riemann fitter.
const Vector3D & getRecoPos3D() const
Getter for the 3d position of the hit.
static CDCRecoHit3D reconstruct(const CDCRecoHit2D &recoHit2D, const CDCTrajectory2D &trajectory2D)
Reconstructs the three dimensional hit from the two dimensional and the two dimensional trajectory.
void reverse()
Reverses the trajectory in place.
double getCurvature() const
Getter for the curvature as seen from the xy projection.
static ESign common(ESign n1, ESign n2)
Check if two values have a common sign.
Definition ESign.h:57

◆ beginEvent()

void beginEvent ( )
overridevirtualinherited

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

Reimplemented from ProcessingSignalListener.

Reimplemented in DATCONFPGAFindlet, SpacePointTagger< AResult, ACluster >, SpacePointTagger< Belle2::CKFToPXDResult, Belle2::PXDCluster >, SpacePointTagger< Belle2::CKFToSVDResult, Belle2::SVDCluster >, MCSymmetric< BaseAxialSegmentPairFilter >, MCSymmetric< BaseAxialSegmentPairFilter >, MCSymmetric< BaseFacetFilter >, MCSymmetric< BaseFacetFilter >, MCSymmetric< BaseFacetRelationFilter >, MCSymmetric< BaseFacetRelationFilter >, MCSymmetric< BaseSegmentPairFilter >, MCSymmetric< BaseSegmentPairFilter >, MCSymmetric< BaseSegmentPairRelationFilter >, MCSymmetric< BaseSegmentPairRelationFilter >, MCSymmetric< BaseSegmentRelationFilter >, MCSymmetric< BaseSegmentRelationFilter >, MCSymmetric< BaseSegmentTripleFilter >, MCSymmetric< BaseSegmentTripleFilter >, MCSymmetric< BaseSegmentTripleRelationFilter >, MCSymmetric< BaseSegmentTripleRelationFilter >, MCSymmetric< BaseTrackRelationFilter >, MCSymmetric< BaseTrackRelationFilter >, MonopoleStereoHitFinder, MonopoleStereoHitFinderQuadratic, SegmentCreatorMCTruth, SegmentFinderFacetAutomaton, SegmentTrackCombiner, SegmentTrackTruthVarSet, StereoHitFinder, StereoHitTruthVarSet, TrackFinderAutomaton, TrackFinderSegmentPairAutomaton, TrackFinderSegmentTripleAutomaton, TruthAxialSegmentPairVarSet, TruthSegmentVarSet, TruthTrackVarSet, WireHitMCMultiLoopBlocker, FindletStoreArrayInput< TWrappedFindlet >, SharingHitsMatcher< ACollectorItem, ACollectionItem >, SharingHitsMatcher< Belle2::TrackingUtilities::CDCTrack, Belle2::TrackingUtilities::CDCSegment2D >, StoreVectorSwapper< IOType, a_alwaysWrite >, StoreVectorSwapper< Belle2::TrackingUtilities::CDCFacet >, StoreVectorSwapper< Belle2::TrackingUtilities::CDCSegment2D >, StoreVectorSwapper< Belle2::TrackingUtilities::CDCSegmentPair >, StoreVectorSwapper< Belle2::TrackingUtilities::CDCSegmentTriple >, StoreVectorSwapper< Belle2::TrackingUtilities::CDCTrack >, StoreVectorSwapper< Belle2::TrackingUtilities::CDCWireHit, true >, RecoTrackStorer, ROIFinder, and SVDHoughTracking.

Definition at line 31 of file CompositeProcessingSignalListener.cc.

32{
35 psl->beginEvent();
36 }
37}
virtual void beginEvent()
Receive signal for the start of a new event.
ProcessingSignalListener()
Allow default construction.

◆ beginRun()

void beginRun ( )
overridevirtualinherited

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

Reimplemented from ProcessingSignalListener.

Reimplemented in DATCONSVDClusterizer, LayerPXDRelationFilter< AFilter, APrefilter >, LayerPXDRelationFilter< TrackingUtilities::ChooseableFilter< PXDPairFilterFactory > >, LayerPXDRelationFilter< TrackingUtilities::ChooseableFilter< PXDPairFilterFactory > >, LayerSVDRelationFilter< AFilter, APrefilter >, LayerSVDRelationFilter< TrackingUtilities::ChooseableFilter< SVDPairFilterFactory > >, LayerSVDRelationFilter< TrackingUtilities::ChooseableFilter< SVDPairFilterFactory > >, SectorMapBasedSVDPairFilter, SimplePXDStateFilter, SimpleSVDStateFilter, CutsFromDBWireHitFilter, WireHitCreator, MVA< Filter< AVarSet::Object > >, MVA< Filter< typename AVarSet::Object > >, MVA< Filter< typename AVarSet::Object > >, FourHitFilter, LayerRelationFilter< AFilter >, LayerRelationFilter< TrackingUtilities::ChooseableFilter< RelationFilterFactory > >, LayerRelationFilter< TrackingUtilities::ChooseableFilter< RelationFilterFactory > >, QualityIndicatorFilter, RecoTrackStorer, ROIFinder, SpacePointLoaderAndPreparer, ThreeHitFilter, TrackCandidateResultRefiner, TwoHitVirtualIPFilter, and TwoHitVirtualIPQIFilter.

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 )
finalvirtual

Expose the parameters to a module.

Reimplemented from CompositeProcessingSignalListener.

Definition at line 32 of file AxialTrackCreatorSegmentHough.cc.

34{
35 moduleParamList->addParameter(prefixed(prefix, "minNHits"),
37 "Absolute minimal number of hits to make an axial track.",
39
40 moduleParamList->addParameter(prefixed(prefix, "minFractionNHits"),
42 "Minimal number of hits as a fraction of the total hits in the event.",
44
45 moduleParamList->addParameter(prefixed(prefix, "maxLevel"),
47 "Level of divisions in the hough space.",
49
50 moduleParamList->addParameter(prefixed(prefix, "curvBounds"),
52 "Curvature bounds of the hough space.",
54
55 moduleParamList->addParameter(prefixed(prefix, "impactBounds"),
57 "Impact parameter bounds of the hough space.",
59
60 moduleParamList->addParameter(prefixed(prefix, "discretePhi0Width"),
62 "Width of the phi0 bins at the lowest level of the hough space.",
64
65 moduleParamList->addParameter(prefixed(prefix, "discretePhi0Overlap"),
67 "Overlap of the phi0 bins at the lowest level of the hough space.",
69
70 moduleParamList->addParameter(prefixed(prefix, "discreteImpactWidth"),
72 "Width of the impact bins at the lowest level of the hough space.",
74
75 moduleParamList->addParameter(prefixed(prefix, "discreteImpactOverlap"),
77 "Overlap of the impact bins at the lowest level of the hough space.",
79
80 moduleParamList->addParameter(prefixed(prefix, "discreteCurvWidth"),
82 "Width of the curvature bins at the lowest level of the hough space.",
84
85 moduleParamList->addParameter(prefixed(prefix, "discreteCurvOverlap"),
87 "Overlap of the curvature bins at the lowest level of the hough space.",
89
90}
int m_param_discreteImpactWidth
Parameter: Width of the impact bins at the lowest level of the hough space.
int m_param_discretePhi0Width
Parameter: Width of the phi0 bins at the lowest level of the hough space.
std::vector< float > m_param_curvBounds
Parameter: Curvature bounds of the hough space.
int m_param_discreteImpactOverlap
Parameter: Overlap of the impact bins at the lowest level of the hough space.
int m_param_discreteCurvOverlap
Parameter: Overlap of the curvature bins at the lowest level of the hough space.
int m_param_maxLevel
Parameter: Level of divisions in the hough space.
int m_param_discreteCurvWidth
Parameter: Width of the curvature bins at the lowest level of the hough space.
int m_param_discretePhi0Overlap
Parameter: Overlap of the phi0 bins at the lowest level of the hough space.
std::vector< float > m_param_impactBounds
Parameter: Impact parameter bounds of the hough space.
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 TrackingUtilities::CDCSegment2D, TrackingUtilities::CDCTrack >.

Definition at line 27 of file AxialTrackCreatorSegmentHough.cc.

28{
29 return "Generates axial tracks from segments using a hough space over phi0 impact and curvature for the spares case.";
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 ( )
finalvirtual

Initialize the findlet before event processing.

Reimplemented from ProcessingSignalListener.

Definition at line 92 of file AxialTrackCreatorSegmentHough.cc.

93{
95
96 B2ASSERT("Need exactly two curv bound", m_param_curvBounds.size() == 2);
97 B2ASSERT("Need exactly two impact bound", m_param_impactBounds.size() == 2);
98
99 const size_t nPhi0Bins = std::pow(c_phi0Divisions, m_param_maxLevel);
100 const Phi0BinsSpec phi0BinsSpec(nPhi0Bins,
103
104 std::array<double, 2> impactBounds{{m_param_impactBounds.front(), m_param_impactBounds.back()}};
105 const size_t nImpactBins = std::pow(c_impactDivisions, m_param_maxLevel);
106 const ImpactBinsSpec impactBinsSpec(impactBounds[0],
107 impactBounds[1],
108 nImpactBins,
111
112 std::array<double, 2> curvBounds{{m_param_curvBounds.front(), m_param_curvBounds.back()}};
113 const size_t nCurvBins = std::pow(c_curvDivisions, m_param_maxLevel);
114 const CurvBinsSpec curvBinsSpec(curvBounds[0],
115 curvBounds[1],
116 nCurvBins,
119
120 m_houghTree = std::make_unique<SimpleSegmentPhi0ImpactCurvHoughTree>(m_param_maxLevel);
121 m_houghTree->assignArray<DiscretePhi0>(phi0BinsSpec.constructArray(), phi0BinsSpec.getNOverlap());
122 m_houghTree->assignArray<ContinuousImpact>(impactBounds, impactBinsSpec.getOverlap()); // Continuous
123 m_houghTree->assignArray<DiscreteCurv>(curvBinsSpec.constructArray(), curvBinsSpec.getNOverlap());
124 m_houghTree->initialize();
125}
static const int c_curvDivisions
Fixed parameter: Number of divisions in the curv direction.
static const int c_impactDivisions
Fixed parameter: Number of divisions in the impact direction.
static const int c_phi0Divisions
Fixed parameter: Number of divisions in the phi0 direction.
DiscreteCurv::Array constructArray() const
Construct the array of discrete curve positions.
Definition CurvRep.h:40
int getNOverlap() const
Getter for the overlap in discrete number of positions.
Definition CurvRep.h:68
double getOverlap() const
Getter for the overlap in real impact to investigate the value that results from the discrete overlap...
Definition ImpactRep.cc:46
DiscretePhi0::Array constructArray() const
Construct the array of discrete phi0 positions.
Definition Phi0Rep.cc:24
int getNOverlap() const
Getter for the overlap in discrete number of positions.
Definition Phi0Rep.h:47

◆ terminate()

void terminate ( )
finalvirtual

Cleanup the findlet after event processing.

Reimplemented from ProcessingSignalListener.

Definition at line 197 of file AxialTrackCreatorSegmentHough.cc.

Member Data Documentation

◆ c_curvDivisions

const int c_curvDivisions = 2
staticprivate

Fixed parameter: Number of divisions in the curv direction.

Definition at line 96 of file AxialTrackCreatorSegmentHough.h.

◆ c_impactDivisions

const int c_impactDivisions = 2
staticprivate

Fixed parameter: Number of divisions in the impact direction.

Definition at line 93 of file AxialTrackCreatorSegmentHough.h.

◆ c_phi0Divisions

const int c_phi0Divisions = 2
staticprivate

Fixed parameter: Number of divisions in the phi0 direction.

Definition at line 90 of file AxialTrackCreatorSegmentHough.h.

◆ m_houghTree

std::unique_ptr<SimpleSegmentPhi0ImpactCurvHoughTree> m_houghTree
private

The hough space tree search.

Definition at line 104 of file AxialTrackCreatorSegmentHough.h.

◆ m_initialized

bool m_initialized = false
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_param_curvBounds

std::vector<float> m_param_curvBounds {{ -0.13, 0.13}}
private

Parameter: Curvature bounds of the hough space.

Definition at line 66 of file AxialTrackCreatorSegmentHough.h.

66{{ -0.13, 0.13}};

◆ m_param_discreteCurvOverlap

int m_param_discreteCurvOverlap = 1
private

Parameter: Overlap of the curvature bins at the lowest level of the hough space.

Definition at line 87 of file AxialTrackCreatorSegmentHough.h.

◆ m_param_discreteCurvWidth

int m_param_discreteCurvWidth = 2
private

Parameter: Width of the curvature bins at the lowest level of the hough space.

Definition at line 84 of file AxialTrackCreatorSegmentHough.h.

◆ m_param_discreteImpactOverlap

int m_param_discreteImpactOverlap = 1
private

Parameter: Overlap of the impact bins at the lowest level of the hough space.

Definition at line 81 of file AxialTrackCreatorSegmentHough.h.

◆ m_param_discreteImpactWidth

int m_param_discreteImpactWidth = 2
private

Parameter: Width of the impact bins at the lowest level of the hough space.

Definition at line 78 of file AxialTrackCreatorSegmentHough.h.

◆ m_param_discretePhi0Overlap

int m_param_discretePhi0Overlap = 1
private

Parameter: Overlap of the phi0 bins at the lowest level of the hough space.

Definition at line 75 of file AxialTrackCreatorSegmentHough.h.

◆ m_param_discretePhi0Width

int m_param_discretePhi0Width = 2
private

Parameter: Width of the phi0 bins at the lowest level of the hough space.

Definition at line 72 of file AxialTrackCreatorSegmentHough.h.

◆ m_param_impactBounds

std::vector<float> m_param_impactBounds {{ -100, 100}}
private

Parameter: Impact parameter bounds of the hough space.

Definition at line 69 of file AxialTrackCreatorSegmentHough.h.

69{{ -100, 100}};

◆ m_param_maxLevel

int m_param_maxLevel = 12
private

Parameter: Level of divisions in the hough space.

Definition at line 63 of file AxialTrackCreatorSegmentHough.h.

◆ m_param_minFractionNHits

double m_param_minFractionNHits = 0.5
private

Parameter: Minimal number of hits as a fraction of the total hits in the event.

Definition at line 60 of file AxialTrackCreatorSegmentHough.h.

◆ m_param_minNHits

double m_param_minNHits = 40
private

Parameter: Absolute minimal number of hits to make an axial track.

Definition at line 57 of file AxialTrackCreatorSegmentHough.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 = false
privateinherited

Flag to keep track whether termination happened before.

Definition at line 55 of file ProcessingSignalListener.h.


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