Belle II Software  release-08-01-10
PXDClusterCheckModule.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 #pragma once
10 
11 #include <framework/core/Module.h>
12 #include <string>
13 
14 namespace Belle2 {
20  namespace PXD {
21 
32  class PXDClusterCheckModule : public Module {
33 
34  public:
38  virtual void initialize() override;
40  virtual void event() override;
41  private:
43  std::string m_clustersOld;
45  std::string m_clustersNew;
46  };//end class declaration
47 
48 
49  } //end PXD namespace;
51 } // end namespace Belle2
Base class for Modules.
Definition: Module.h:72
std::string m_clustersNew
Name of the second PXDCluster StoreArray.
virtual void initialize() override
Initialize the module.
virtual void event() override
do the clustering
std::string m_clustersOld
Name of the first PXDCluster StoreArray.
PXDClusterCheckModule()
Constructor defining the parameters.
Abstract base class for different kinds of events.