![]() |
Belle II Software release-09-00-03
|
Generates axial tracks from hit using the special leaf processing inspired by the legendre algorithm. More...
#include <AxialTrackCreatorHitHough.h>


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 | initialize () final |
| Initialize the findlet before event processing. | |
| void | apply (const std::vector< const CDCWireHit * > &axialWireHits, std::vector< 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. | |
Static Public Member Functions | |
| static std::vector< float > | getDefaultCurvBounds (std::array< float, 2 > curvSpan, int granularityLevel) |
| Get a series of parameters to be set for each pass over the rough hough space. | |
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 | SimpleRLTaggedWireHitPhi0CurvHough = SimpleRLTaggedWireHitHoughTree< InPhi0CurvBox, c_phi0Divisions, c_curvDivisions > |
| Type of the hough space tree search. | |
Private Attributes | |
| const double | m_curlCurv = 0.018 |
| Curvature below which particles from IP do not leave the CDC. | |
| int | m_param_granularityLevel = 12 |
| Parameter: Level of divisions in the hough space. | |
| int | m_param_sectorLevelSkip = 2 |
| Parameter: Number of levels to be skipped in the hough space on the first level to form sectors. | |
| std::vector< float > | m_param_curvBounds {{ -0.02, 0.14}} |
| Parameter: hough bounds. | |
| int | m_param_discretePhi0Width = 19 |
| Parameter: Width of the phi0 bins at the highest level of the hough space. | |
| int | m_param_discretePhi0Overlap = 5 |
| Parameter: Overlap of the phi0 bins at the highest level of the hough space. | |
| int | m_param_discreteCurvWidth = 1 |
| Parameter: Width of the curvature bins at the highest level of the hough space. | |
| int | m_param_discreteCurvOverlap = -1 |
| Parameter: Overlap of the curvature bins at the highest level of the hough space. | |
| std::vector< ParameterVariantMap > | m_param_relaxationSchedule |
| Parameter: Relaxation schedule for the leaf processor in the hough tree. | |
| std::unique_ptr< SimpleRLTaggedWireHitPhi0CurvHough > | m_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 happend before. | |
| bool | m_terminated = false |
| Flag to keep track whether termination happend 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_curvDivisions = 2 |
| Fixed parameter: Number of divisions in the curv direction. | |
Generates axial tracks from hit using the special leaf processing inspired by the legendre algorithm.
Definition at line 32 of file AxialTrackCreatorHitHough.h.
|
inherited |
|
inherited |
|
private |
Type of the hough space tree search.
Definition at line 96 of file AxialTrackCreatorHitHough.h.
|
private |
Type of the base class.
Definition at line 36 of file AxialTrackCreatorHitHough.h.
|
protectedinherited |
|
protectedinherited |
Register a processing signal listener to be notified.
Definition at line 55 of file CompositeProcessingSignalListener.cc.
|
final |
Generates the tracks from the given segments into the output argument.
Definition at line 149 of file AxialTrackCreatorHitHough.cc.
|
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.
|
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.
|
overridevirtualinherited |
Receive and dispatch signal for the end of the run.
Reimplemented from ProcessingSignalListener.
Definition at line 39 of file CompositeProcessingSignalListener.cc.
|
finalvirtual |
Expose the parameters to a module.
Reimplemented from Findlet< const CDCWireHit *const, CDCTrack >.
Definition at line 62 of file AxialTrackCreatorHitHough.cc.
|
static |
Get a series of parameters to be set for each pass over the rough hough space.
Definition at line 190 of file AxialTrackCreatorHitHough.cc.
|
finalvirtual |
Short description of the findlet.
Reimplemented from Findlet< const CDCWireHit *const, CDCTrack >.
Definition at line 57 of file AxialTrackCreatorHitHough.cc.
|
protectedinherited |
Get the number of currently registered listeners.
Definition at line 60 of file CompositeProcessingSignalListener.cc.
|
finalvirtual |
Initialize the findlet before event processing.
Reimplemented from ProcessingSignalListener.
Definition at line 112 of file AxialTrackCreatorHitHough.cc.
|
finalvirtual |
Cleanup the findlet after event processing.
Reimplemented from ProcessingSignalListener.
Definition at line 183 of file AxialTrackCreatorHitHough.cc.
|
staticprivate |
Fixed parameter: Number of divisions in the curv direction.
Definition at line 92 of file AxialTrackCreatorHitHough.h.
|
staticprivate |
Fixed parameter: Number of divisions in the phi0 direction.
Definition at line 89 of file AxialTrackCreatorHitHough.h.
|
private |
Curvature below which particles from IP do not leave the CDC.
Definition at line 60 of file AxialTrackCreatorHitHough.h.
|
private |
The hough space tree search.
Definition at line 100 of file AxialTrackCreatorHitHough.h.
|
privateinherited |
Flag to keep track whether initialization happend before.
Definition at line 52 of file ProcessingSignalListener.h.
|
privateinherited |
Name of the type during initialisation.
Definition at line 58 of file ProcessingSignalListener.h.
|
private |
Parameter: hough bounds.
Definition at line 71 of file AxialTrackCreatorHitHough.h.
|
private |
Parameter: Overlap of the curvature bins at the highest level of the hough space.
Definition at line 83 of file AxialTrackCreatorHitHough.h.
|
private |
Parameter: Width of the curvature bins at the highest level of the hough space.
Definition at line 80 of file AxialTrackCreatorHitHough.h.
|
private |
Parameter: Overlap of the phi0 bins at the highest level of the hough space.
Definition at line 77 of file AxialTrackCreatorHitHough.h.
|
private |
Parameter: Width of the phi0 bins at the highest level of the hough space.
Definition at line 74 of file AxialTrackCreatorHitHough.h.
|
private |
Parameter: Level of divisions in the hough space.
Definition at line 65 of file AxialTrackCreatorHitHough.h.
|
private |
Parameter: Relaxation schedule for the leaf processor in the hough tree.
Definition at line 86 of file AxialTrackCreatorHitHough.h.
|
private |
Parameter: Number of levels to be skipped in the hough space on the first level to form sectors.
Definition at line 68 of file AxialTrackCreatorHitHough.h.
|
privateinherited |
References to subordinary signal processing listener contained in this findlet.
Definition at line 52 of file CompositeProcessingSignalListener.h.
|
privateinherited |
Flag to keep track whether termination happend before.
Definition at line 55 of file ProcessingSignalListener.h.