10#include <tracking/trackFindingCDC/findlets/minimal/AxialSegmentPairCreator.h>
11#include <tracking/trackFindingCDC/findlets/minimal/SegmentTripleCreator.h>
13#include <tracking/trackFindingCDC/findlets/minimal/TrackCreatorSegmentTripleAutomaton.h>
14#include <tracking/trackFindingCDC/findlets/minimal/TrackCreatorSingleSegments.h>
15#include <tracking/trackFindingCDC/findlets/minimal/TrackLinker.h>
16#include <tracking/trackFindingCDC/findlets/minimal/TrackOrienter.h>
18#include <tracking/trackFindingCDC/filters/segmentTripleRelation/ChooseableSegmentTripleRelationFilter.h>
20#include <tracking/trackFindingCDC/eventdata/tracks/CDCTrack.h>
21#include <tracking/trackFindingCDC/eventdata/tracks/CDCSegmentTriple.h>
22#include <tracking/trackFindingCDC/eventdata/tracks/CDCAxialSegmentPair.h>
24#include <tracking/trackFindingCDC/findlets/minimal/WeightedRelationCreator.h>
25#include <tracking/trackFindingCDC/findlets/base/StoreVectorSwapper.h>
34 namespace TrackFindingCDC {
The Module parameter list class.
Class providing construction combinatorics for the axial stereo segment pairs.
A reconstructed sequence of two dimensional hits in one super layer.
Class representing a triple of reconstructed segments in adjacent superlayer.
Class representing a sequence of three dimensional reconstructed hits.
Convenvience wrapper to setup a Chooseable filter from a specific factory object.
Interface for a minimal algorithm part that wants to expose some parameters to a module.
Class providing construction combinatorics for the axial stereo segment pairs.
Refines the clustering of wire hits from clusters to clusters.
Findlet that generates tracks based on a cellular automaton of segment triples.
Searches for segments that have not been used at all and creates tracks from them.
Findlet implementing the track finding from segments using a cellular automaton over segment triples.
StoreVectorSwapper< CDCSegmentTriple > m_segmentTripleSwapper
Helper to swap the local segment triples out to the DataStore.
void apply(const std::vector< CDCSegment2D > &inputSegments, std::vector< CDCTrack > &tracks) final
Generates the tracks.
TrackOrienter m_trackOrienter
Fixes the direction of flight of tracks by a simple chooseable heuristic.
TrackCreatorSingleSegments m_trackCreatorSingleSegments
Creates tracks from left over segments.
TrackCreatorSegmentTripleAutomaton m_trackCreatorSegmentTripleAutomaton
Instance of the cellular automaton creating creating tracks over segment triple.
void beginEvent() final
Signal the beginning of a new event.
TrackLinker m_trackLinker
Findlet responsible for the linking of tracks.
AxialSegmentPairCreator m_axialSegmentPairCreator
Instance of the axial to axial segment pair creator.
std::string getDescription() final
Short description of the findlet.
SegmentTripleCreator m_segmentTripleCreator
Instance of the segment triple creator.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) final
Expose the parameters to a module.
std::vector< CDCTrack > m_preLinkingTracks
Memory for the tracks before linking was applied.
std::vector< CDCAxialSegmentPair > m_axialSegmentPairs
Memory for the axial to axial segment pairs.
TrackFinderSegmentTripleAutomaton()
Constructor registering the subordinary findlets to the processing signal distribution machinery.
std::vector< WeightedRelation< const CDCSegmentTriple > > m_segmentTripleRelations
Memory for the segment triple relations.
WeightedRelationCreator< const CDCSegmentTriple, ChooseableSegmentTripleRelationFilter > m_segmentTripleRelationCreator
Instance of the segment triple relation creator.
std::vector< CDCSegmentTriple > m_segmentTriples
Memory for the segment triples.
std::vector< CDCTrack > m_orientedTracks
Memory for the tracks after orientation was applied.
Links tracks based on a filter criterion.
Fixes the orientation of tracks by a simple heuristic.
Findlet that combines geometrical constrained pairs of objects to relations and selects them by the f...
Abstract base class for different kinds of events.