 |
Belle II Software
release-05-01-25
|
12 #include <tracking/spacePointCreation/SpacePointTrackCand.h>
13 #include <tracking/trackFindingVXD/trackQualityEstimators/QualityEstimatorBase.h>
14 #include <tracking/trackFindingVXD/mva/MVAExpert.h>
15 #include <tracking/trackFindingVXD/variableExtractors/ClusterInfoExtractor.h>
16 #include <tracking/trackFindingVXD/variableExtractors/QEResultsExtractor.h>
18 #include <framework/datastore/StoreArray.h>
19 #include <framework/core/Module.h>
40 class VXDQualityEstimatorMVAModule :
public Module {
54 void event()
override;
std::unique_ptr< MVAExpert > m_mvaExpert
pointer to the object to interact with the MVA package
float m_nSpacePoints
number of SpacePoints in SPTC as additional info for MVA, type is float to be consistend with m_varia...
std::unique_ptr< QualityEstimatorBase > m_estimator
pointer to the selected QualityEstimator
std::string m_EstimationMethod
Identifier which estimation method to use.
void event() override
Applies the selected quality estimation method for a given set of TCs.
bool m_UseTimingInfo
whether to use timing information available in the weight file
Abstract base class for different kinds of events.
void beginRun() override
Launches mvaExpert and sets the magnetic field strength.
std::vector< Named< float * > > m_variableSet
set of named variables to be used in MVA
StoreArray< SpacePointTrackCand > m_spacePointTrackCands
the storeArray for SpacePointTrackCands as member, is faster than recreating link for each event
std::unique_ptr< QEResultsExtractor > m_qeResultsExtractor
pointer to object that extracts the results from the estimation mehtod (including QI,...
std::string m_ClusterInformation
how to compile information from clusters ['Average']
std::unique_ptr< ClusterInfoExtractor > m_clusterInfoExtractor
pointer to object that extracts info from the clusters of a SPTC
std::string m_SpacePointTrackCandsStoreArrayName
Name of the expected StoreArray containing SpacePointTrackCands.
std::string m_weightFileIdentifier
identifier of weightfile in Database or local root/xml file
VXDQualityEstimatorMVAModule()
Constructor of the module.
void initialize() override
Initializes the Module.