 |
Belle II Software
release-05-01-25
|
12 #include <tracking/trackFindingCDC/findlets/base/Findlet.h>
14 #include <tracking/trackFindingCDC/filters/axialSegmentPair/ChooseableAxialSegmentPairFilter.h>
16 #include <tracking/trackFindingCDC/topology/ISuperLayer.h>
28 namespace TrackFindingCDC {
29 class CDCAxialSegmentPair;
33 class AxialSegmentPairCreator :
public Findlet<const CDCSegment2D, CDCAxialSegmentPair> {
37 using Super = Findlet<const CDCSegment2D, CDCAxialSegmentPair>;
std::array< std::vector< const CDCSegment2D * >, ISuperLayerUtil::c_N > m_segmentsBySuperLayer
Structure for the segments grouped by super layer id.
void create(const std::vector< const CDCSegment2D * > &startSegments, const std::vector< const CDCSegment2D * > &endSegments, std::vector< CDCAxialSegmentPair > &axialSegmentPairs)
Creates segment pairs from a combination of start segments and end segments.
Class representing a pair of reconstructed axial segements in adjacent superlayer.
Abstract base class for different kinds of events.
std::string getDescription() final
Short description of the findlet.
A reconstructed sequence of two dimensional hits in one super layer.
void apply(const std::vector< CDCSegment2D > &inputSegments, std::vector< CDCAxialSegmentPair > &axialSegmentPairs) final
Main method constructing pairs in adjacent super layers.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) final
Expose the parameters to a module.
The Module parameter list class.
Findlet< const CDCSegment2D, CDCAxialSegmentPair > Super
Type of the base class.
This is a utility class for the free ISuperLayer type.
AxialSegmentPairCreator()
Constructor adding the filter as a subordinary processing signal listener.
ChooseableAxialSegmentPairFilter m_axialSegmentPairFilter
The filter to be used for the segment pair generation.