 |
Belle II Software
release-05-01-25
|
12 #include <tracking/trackFindingCDC/findlets/base/Findlet.h>
14 #include <tracking/trackFindingCDC/findlets/minimal/AxialSegmentPairCreator.h>
16 #include <tracking/trackFindingCDC/filters/segmentPair/ChooseableSegmentPairFilter.h>
18 #include <tracking/trackFindingCDC/topology/ISuperLayer.h>
29 class ModuleParamList;
31 namespace TrackFindingCDC {
36 class SegmentPairCreator :
public Findlet<const CDCSegment2D, CDCSegmentPair> {
40 using Super = Findlet<const CDCSegment2D, CDCSegmentPair>;
Class providing construction combinatorics for the axial stereo segment pairs.
Class representing a pair of one reconstructed axial segement and one stereo segment in adjacent supe...
AxialSegmentPairCreator m_axialSegmentPairCreator
Findlet responsible for the creation of axial axial segment pairs.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) final
Expose the parameters to a module.
void apply(const std::vector< CDCSegment2D > &inputSegments, std::vector< CDCSegmentPair > &segmentPairs) final
Main method constructing pairs in adjacent super layers.
bool m_param_axialBridging
Parameter : Switch to enable the search for axial to axial pairs to enable more stable reconstruction...
ChooseableSegmentPairFilter m_segmentPairFilter
The filter to be used for the segment pair generation.
Abstract base class for different kinds of events.
SegmentPairCreator()
Constructor adding the filter as a subordinary processing signal listener.
std::string getDescription() final
Short description of the findlet.
Findlet< const CDCSegment2D, CDCSegmentPair > Super
Type of the base class.
A reconstructed sequence of two dimensional hits in one super layer.
void create(const std::vector< const CDCSegment2D * > &fromSegments, const std::vector< const CDCSegment2D * > &toSegments, std::vector< CDCSegmentPair > &segmentPairs)
Creates segment pairs from a combination of from segments and to segments.
std::array< std::vector< const CDCSegment2D * >, ISuperLayerUtil::c_N > m_segmentsBySuperLayer
Structure for the segments grouped by super layer id.
The Module parameter list class.
This is a utility class for the free ISuperLayer type.