10#include <tracking/trackFindingCDC/findlets/base/Findlet.h>
12#include <tracking/trackFindingCDC/filters/facet/ChooseableFacetFilter.h>
13#include <tracking/trackFindingCDC/filters/facet/FeasibleRLFacetFilter.h>
14#include <tracking/trackFindingCDC/filters/wireHitRelation/BridgingWireHitRelationFilter.h>
16#include <tracking/trackFindingCDC/eventdata/utils/DriftLengthEstimator.h>
18#include <tracking/trackFindingCDC/utilities/WeightedRelation.h>
30 namespace TrackFindingCDC {
32 class CDCWireHitCluster;
The Module parameter list class.
Wire hit relation filter that is compensating for hit inefficiencies.
Class representing a triple of neighboring oriented wire with additional trajectory information.
An aggregation of CDCWireHits.
Class representing a hit wire in the central drift chamber.
Class providing construction combinatorics for the facets.
DriftLengthEstimator m_driftLengthEstimator
Instance of the drift length estimator to be used.
BridgingWireHitRelationFilter m_wireHitRelationFilter
The filter for the hit neighborhood.
bool m_param_feasibleRLOnly
Parameter : Switch to apply the rl feasibility cut.
void apply(const std::vector< CDCWireHitCluster > &inputClusters, std::vector< CDCFacet > &facets) final
Central function creating the hit triplets from the clusters.
std::vector< WeightedRelation< CDCWireHit > > m_wireHitRelations
Memory for the wire hit neighborhood in within a cluster.
bool m_param_leastSquareFit
Parameter : Switch to fit the facet with least square method for the drift length update.
std::string getDescription() final
Short description of the findlet.
ChooseableFacetFilter m_facetFilter
The filter to be used for the facet generation.
bool m_param_updateDriftLength
Parameter : Switch to reestimate the drift length.
void createFacetsForHitTriple(const CDCWireHit &startWireHit, const CDCWireHit &middleWireHit, const CDCWireHit &endWireHit, std::vector< CDCFacet > &facets)
Generates reconstruted facets on the three given wire hits by hypothesizing over the 8 left right pas...
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) final
Expose the parameters to a module.
FeasibleRLFacetFilter m_feasibleRLFacetFilter
The feasibility filter for the right left passage information.
void createFacets(const std::vector< CDCWireHit * > &wireHits, const std::vector< WeightedRelation< CDCWireHit > > &wireHitRelations, std::vector< CDCFacet > &facets)
Generates facets on the given wire hits generating neighboring triples of hits.
FacetCreator()
Constructor adding the filter as a subordinary processing signal listener.
Filter for the construction of good facets investigating the feasibility of the right left passage hy...
Interface for a minimal algorithm part that wants to expose some parameters to a module.
Type for two related objects with a weight.
Abstract base class for different kinds of events.
Helper construct implementing the (re)estimation of the drift length for various hit objects.