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