 |
Belle II Software
release-05-02-19
|
12 #include <framework/core/Module.h>
13 #include <framework/datastore/StoreArray.h>
15 #include <tracking/dataobjects/RecoTrack.h>
16 #include <svd/dataobjects/SVDCluster.h>
34 class SVDSpacePointQICalibrationModule :
public Module {
50 virtual void event()
override;
60 void calculateProb(TH2F* signal, TH2F* background, TH2F* probability);
int m_binSize
number of bins in charge distribution
std::string m_recoTracksName
RecoTracks collection name.
virtual void event() override
event
StoreArray< SVDCluster > m_svdClusters
the storeArray for svdClusters as member, is faster than recreating link for each event
std::string m_nameOfInstance
allows the user to set an identifier for this module.
StoreArray< RecoTrack > m_recoTracks
RecoTrack store array.
std::string m_outputFileName
output file name
std::map< std::string, TH2F * > signalHistMap
map of signal histograms
Abstract base class for different kinds of events.
bool m_useLegacyNaming
use legacy pdf naming
std::string m_svdClustersName
SVDCluster collection name.
void calculateProb(TH2F *signal, TH2F *background, TH2F *probability)
compute probability
std::map< std::string, TH2F * > backgroundHistMap
map for background histograms
virtual void initialize() override
Init the module.
void calculateError(TH2F *signal, TH2F *background, TH2F *error)
compute error
virtual void terminate() override
final output
int m_maxClusterSize
max numnber of strips the PDF are separated into
SVDSpacePointQICalibrationModule()
Constructor.