Belle II Software  release-05-02-19
PXDClusterCheckModule.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2010 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Martin Ritter *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #ifndef PXDClusterCheckModule_H
12 #define PXDClusterCheckModule_H
13 
14 #include <framework/core/Module.h>
15 #include <string>
16 
17 namespace Belle2 {
23  namespace PXD {
24 
35  class PXDClusterCheckModule : public Module {
36 
37  public:
41  virtual void initialize() override;
43  virtual void event() override;
44  private:
46  std::string m_clustersOld;
48  std::string m_clustersNew;
49  };//end class declaration
50 
51 
52  } //end PXD namespace;
54 } // end namespace Belle2
55 
56 #endif // PXDClusterCheckModule_H
Belle2::PXD::PXDClusterCheckModule::event
virtual void event() override
do the clustering
Definition: PXDClusterCheckModule.cc:104
Belle2::PXD::PXDClusterCheckModule::PXDClusterCheckModule
PXDClusterCheckModule()
Constructor defining the parameters.
Definition: PXDClusterCheckModule.cc:62
Belle2::PXD::PXDClusterCheckModule::m_clustersOld
std::string m_clustersOld
Name of the first PXDCluster StoreArray.
Definition: PXDClusterCheckModule.h:54
Belle2::PXD::PXDClusterCheckModule::initialize
virtual void initialize() override
Initialize the module.
Definition: PXDClusterCheckModule.cc:74
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::PXD::PXDClusterCheckModule::m_clustersNew
std::string m_clustersNew
Name of the second PXDCluster StoreArray.
Definition: PXDClusterCheckModule.h:56