Belle II Software development
|
Filter for >= 3 hits using QualityEstimators. More...
#include <QualityIndicatorFilter.h>
Public Types | |
using | Object = AObject |
Type of the object to be analysed. | |
using | Interface = Filter< AObject > |
Mark this class as the basic interface. | |
Public Member Functions | |
TrackFindingCDC::Weight | operator() (const BasePathFilter::Object &pair) override |
Return the weight based on the quality estimator. | |
void | exposeParameters (ModuleParamList *moduleParamList, const std::string &prefix) override |
Expose the parameters. | |
void | initialize () override |
initialize quality estimator | |
void | beginRun () override |
set BField value for estimator | |
virtual bool | needsTruthInformation () |
Indicates if the filter requires Monte Carlo information. | |
Weight | operator() (const Object *obj) |
Function to evaluate the object. | |
virtual std::vector< float > | operator() (const std::vector< Object * > &objs) |
Function to evaluate a vector of objects Base implementation applies the function to each object. | |
void | beginEvent () override |
Receive and dispatch signal for the start of a new event. | |
void | endRun () override |
Receive and dispatch signal for the end of the run. | |
void | terminate () override |
Receive and dispatch Signal for termination of the event processing. | |
Protected Member Functions | |
void | addProcessingSignalListener (ProcessingSignalListener *psl) |
Register a processing signal listener to be notified. | |
int | getNProcessingSignalListener () |
Get the number of currently registered listeners. | |
Private Types | |
using | Super = ProcessingSignalListener |
Type of the base class. | |
Private Attributes | |
std::string | m_EstimationMethod = "tripletFit" |
Identifier which estimation method to use. | |
std::string | m_MCRecoTracksStoreArrayName = "MCRecoTracks" |
sets the name of the expected StoreArray containing MCRecoTracks. Only required for MCInfo method | |
bool | m_MCStrictQualityEstimator = true |
Only required for MCInfo method. | |
std::unique_ptr< QualityEstimatorBase > | m_estimator |
pointer to the selected QualityEstimator | |
double | m_QIcut = 0.0 |
cut on quality indicator | |
std::vector< ProcessingSignalListener * > | m_subordinaryProcessingSignalListeners |
References to subordinary signal processing listener contained in this findlet. | |
bool | m_initialized = false |
Flag to keep track whether initialization happened before. | |
bool | m_terminated = false |
Flag to keep track whether termination happened before. | |
std::string | m_initializedAs |
Name of the type during initialisation. | |
Filter for >= 3 hits using QualityEstimators.
Definition at line 22 of file QualityIndicatorFilter.h.
Mark this class as the basic interface.
Definition at line 38 of file Filter.dcl.h.
|
inherited |
Type of the object to be analysed.
Definition at line 35 of file Filter.dcl.h.
|
privateinherited |
Type of the base class.
Definition at line 25 of file CompositeProcessingSignalListener.h.
|
protectedinherited |
Register a processing signal listener to be notified.
Definition at line 55 of file CompositeProcessingSignalListener.cc.
|
overridevirtualinherited |
Receive and dispatch signal for the start of a new event.
Reimplemented from ProcessingSignalListener.
Reimplemented in SpacePointTagger< Belle2::CKFToPXDResult, Belle2::PXDCluster >, SpacePointTagger< Belle2::CKFToSVDResult, Belle2::SVDCluster >, BaseEventTimeExtractor< RecoTrack * >, BaseEventTimeExtractor< TrackFindingCDC::CDCWireHit & >, SharingHitsMatcher< Belle2::TrackFindingCDC::CDCTrack, Belle2::TrackFindingCDC::CDCSegment2D >, MCSymmetric< BaseAxialSegmentPairFilter >, MCSymmetric< BaseFacetFilter >, MCSymmetric< BaseFacetRelationFilter >, MCSymmetric< BaseSegmentPairFilter >, MCSymmetric< BaseSegmentPairRelationFilter >, MCSymmetric< BaseSegmentRelationFilter >, MCSymmetric< BaseSegmentTripleFilter >, MCSymmetric< BaseSegmentTripleRelationFilter >, MCSymmetric< BaseTrackRelationFilter >, StoreVectorSwapper< Belle2::TrackFindingCDC::CDCFacet >, StoreVectorSwapper< Belle2::TrackFindingCDC::CDCWireHit, true >, StoreVectorSwapper< Belle2::TrackFindingCDC::CDCSegment2D >, StoreVectorSwapper< Belle2::TrackFindingCDC::CDCTrack >, StoreVectorSwapper< Belle2::TrackFindingCDC::CDCSegmentPair >, StoreVectorSwapper< Belle2::TrackFindingCDC::CDCSegmentTriple >, RecoTrackStorer, ROIFinder, and SVDHoughTracking.
Definition at line 31 of file CompositeProcessingSignalListener.cc.
|
overridevirtual |
set BField value for estimator
Reimplemented from CompositeProcessingSignalListener.
Definition at line 40 of file QualityIndicatorFilter.cc.
|
overridevirtualinherited |
Receive and dispatch signal for the end of the run.
Reimplemented from ProcessingSignalListener.
Definition at line 39 of file CompositeProcessingSignalListener.cc.
|
overridevirtual |
Expose the parameters.
Reimplemented from Filter< AObject >.
Definition at line 22 of file QualityIndicatorFilter.cc.
|
protectedinherited |
Get the number of currently registered listeners.
Definition at line 60 of file CompositeProcessingSignalListener.cc.
|
overridevirtual |
initialize quality estimator
Reimplemented from CompositeProcessingSignalListener.
Definition at line 51 of file QualityIndicatorFilter.cc.
|
virtualinherited |
Indicates if the filter requires Monte Carlo information.
Reimplemented in MCSymmetric< BaseAxialSegmentPairFilter >, MCSymmetric< BaseFacetFilter >, MCSymmetric< BaseFacetRelationFilter >, MCSymmetric< BaseSegmentPairFilter >, MCSymmetric< BaseSegmentPairRelationFilter >, MCSymmetric< BaseSegmentRelationFilter >, MCSymmetric< BaseSegmentTripleFilter >, MCSymmetric< BaseSegmentTripleRelationFilter >, MCSymmetric< BaseTrackRelationFilter >, OnVarSet< Filter< ATruthVarSet::Object > >, OnVarSet< Filter< AVarSet::Object > >, OnVarSet< BaseFacetFilter >, OnVarSet< BaseFacetRelationFilter >, OnVarSet< BaseAxialSegmentPairFilter >, OnVarSet< BaseSegmentRelationFilter >, OnVarSet< BaseTrackRelationFilter >, and OnVarSet< BaseSegmentPairRelationFilter >.
Definition at line 46 of file Filter.icc.h.
|
overridevirtual |
Return the weight based on the quality estimator.
Returns the QI value obtained from the fit with the chosen QualityEstimator if above the m_QIcut, and NAN if the QI is below the cut.
Reimplemented from Filter< AObject >.
Definition at line 69 of file QualityIndicatorFilter.cc.
|
inherited |
Function to evaluate the object.
Base implementation accepts all objects, except nullptr.
obj | The object to be accepted or rejected. |
Definition at line 58 of file Filter.icc.h.
|
virtualinherited |
Function to evaluate a vector of objects Base implementation applies the function to each object.
Can be optimized for MVA filters
objs | A vector of pointers to objects |
Definition at line 64 of file Filter.icc.h.
|
overridevirtualinherited |
Receive and dispatch Signal for termination of the event processing.
Reimplemented from ProcessingSignalListener.
Reimplemented in StereoHitTrackQuadTreeMatcher< Belle2::TrackFindingCDC::HyperHough >, StereoHitTrackQuadTreeMatcher< Belle2::TrackFindingCDC::QuadraticLegendre >, and StereoHitTrackQuadTreeMatcher< Belle2::TrackFindingCDC::Z0TanLambdaLegendre >.
Definition at line 47 of file CompositeProcessingSignalListener.cc.
|
private |
Identifier which estimation method to use.
Valid identifiers are: mcInfo, circleFit, tripletFit, helixFit
Definition at line 39 of file QualityIndicatorFilter.h.
|
private |
pointer to the selected QualityEstimator
Definition at line 45 of file QualityIndicatorFilter.h.
|
privateinherited |
Flag to keep track whether initialization happened before.
Definition at line 52 of file ProcessingSignalListener.h.
|
privateinherited |
Name of the type during initialisation.
Definition at line 58 of file ProcessingSignalListener.h.
|
private |
sets the name of the expected StoreArray containing MCRecoTracks. Only required for MCInfo method
Definition at line 41 of file QualityIndicatorFilter.h.
|
private |
Only required for MCInfo method.
Definition at line 43 of file QualityIndicatorFilter.h.
|
private |
cut on quality indicator
Definition at line 48 of file QualityIndicatorFilter.h.
|
privateinherited |
References to subordinary signal processing listener contained in this findlet.
Definition at line 52 of file CompositeProcessingSignalListener.h.
|
privateinherited |
Flag to keep track whether termination happened before.
Definition at line 55 of file ProcessingSignalListener.h.