Belle II Software development
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
20namespace Belle2 {
29
30 public:
31
34
36 virtual void initialize() override;
38 virtual void event() override;
40 virtual void terminate() override;
41
42
43 protected:
44 // Data members
45
47 std::string m_svdClustersName;
48
51
52 std::string m_inputPDF;
54 TFile* m_calibrationFile = nullptr;
59 };
61} //end namespace Belle2
62
63#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.
Accessor to arrays stored in the data store.
Definition: StoreArray.h:113
Abstract base class for different kinds of events.