Belle II Software  release-06-00-14
CertifyParallelModule.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 CERTIFYPARALLELMODULE_H
10 #define CERTIFYPARALLELMODULE_H
11 
12 #include <framework/core/Module.h>
13 
14 namespace Belle2 {
25  class CertifyParallelModule : public Module {
26 
27  // Public functions
28  public:
29 
32  virtual ~CertifyParallelModule();
33 
35  virtual void initialize();
36 
38  virtual void beginRun();
39  virtual void event();
40  virtual void endRun();
41  virtual void terminate();
42 
43  private:
44  int m_nevent;
45 
46 
47  };
48 
50 } // end namespace Belle2
51 
52 #endif // MODULEHELLO_H
A class definition of an input module for Sequential ROOT I/O.
virtual void event()
This method is the core of the module.
virtual void initialize()
Module functions to be called from main process.
virtual void beginRun()
Module functions to be called from event process.
virtual void terminate()
This method is called at the end of the event processing.
virtual void endRun()
This method is called if the current run ends.
CertifyParallelModule()
Constructor / Destructor.
Base class for Modules.
Definition: Module.h:72
Abstract base class for different kinds of events.