 |
Belle II Software
release-05-01-25
|
12 #include <tracking/trackFindingCDC/findlets/base/Findlet.h>
13 #include <tracking/trackFindingCDC/findlets/minimal/SuperClusterCreator.h>
14 #include <tracking/trackFindingCDC/findlets/minimal/ClusterBackgroundDetector.h>
15 #include <tracking/trackFindingCDC/findlets/minimal/ClusterRefiner.h>
17 #include <tracking/trackFindingCDC/filters/wireHitRelation/BridgingWireHitRelationFilter.h>
19 #include <tracking/trackFindingCDC/eventdata/segments/CDCWireHitCluster.h>
20 #include <tracking/trackFindingCDC/eventdata/hits/CDCWireHit.h>
29 namespace TrackFindingCDC {
31 class ClusterPreparer :
public Findlet<CDCWireHit&, CDCWireHitCluster, CDCWireHitCluster> {
35 using Super = Findlet<CDCWireHit&, CDCWireHitCluster, CDCWireHitCluster>;
Wire hit relation filter that is compensating for hit inefficiencies.
ClusterBackgroundDetector m_clusterBackgroundDetector
Marks the clusters as background.
ClusterPreparer()
Constructor registering the subordinary findlets to the processing signal distribution machinery.
Abstract base class for different kinds of events.
Marks clusters as background based on a background measure.
Refines the clustering of wire hits from clusters to clusters.
Refines the clustering of wire hits from super clusters to clustexrs.
std::string getDescription() final
Short description of the findlet.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) final
Expose the parameters to a module.
Findlet< CDCWireHit &, CDCWireHitCluster, CDCWireHitCluster > Super
Type of the base class.
ClusterRefiner< BridgingWireHitRelationFilter > m_clusterRefiner
Creates the clusters from super clusters.
An aggregation of CDCWireHits.
Class representing a hit wire in the central drift chamber.
The Module parameter list class.
SuperClusterCreator m_superClusterCreator
Composes the super clusters.
void apply(std::vector< CDCWireHit > &inputWireHits, std::vector< CDCWireHitCluster > &clusters, std::vector< CDCWireHitCluster > &superClusters) final
Generates the segment from wire hits.