Belle II Software  release-08-01-10
SVDClusterQualityEstimatorModule.h
1 /**************************************************************************
2  * basf2 (Belle II Analysis Software Framework) *
3  * Author: The Belle II Collaboration *
4  * *
5  * See git log for contributors and copyright holders. *
6  * This file is licensed under LGPL-3.0, see LICENSE.md. *
7  **************************************************************************/
8 
9 #ifndef SVDClusterQualityEstimatorModule_H
10 #define SVDClusterQualityEstimatorModule_H
11 
12 #include <framework/core/Module.h>
13 #include <framework/datastore/StoreArray.h>
14 
15 #include <svd/dataobjects/SVDCluster.h>
16 
17 #include <string>
18 #include <TFile.h>
19 
20 namespace Belle2 {
32 
33  public:
34 
37 
39  virtual void initialize() override;
41  virtual void event() override;
43  virtual void terminate() override;
44 
45 
46  protected:
47  // Data members
48 
50  std::string m_svdClustersName;
51 
54 
55  std::string m_inputPDF;
57  TFile* m_calibrationFile = nullptr;
62  };
64 } //end namespace Belle2
65 
66 #endif
Base class for Modules.
Definition: Module.h:72
Calculates the probability of a cluster originating from signal hit.
std::string m_svdClustersName
SVDCluster collection name.
virtual void initialize() override
Init the module.
StoreArray< SVDCluster > m_svdClusters
The storeArray for svdClusters.
std::string m_inputPDF
File path of root file containing pdf histograms.
bool m_useLegacyNaming
Choice between PDF naming conventions.
TFile * m_calibrationFile
Pointer to root TFile containing PDF histograms.
Abstract base class for different kinds of events.