Belle II Software  release-06-00-14
DQMHistAnalysisOutput.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 // File : DQMHistAnalysisOut.h
10 // Description : Output module for DQM Histogram analysis
11 //-
12 
13 #pragma once
14 
15 #include <dqm/analysis/modules/DQMHistAnalysis.h>
16 
17 namespace Belle2 {
25 
26  // Public functions
27  public:
28 
31  virtual ~DQMHistAnalysisOutputModule();
32 
34  virtual void initialize() override;
35 
37  virtual void beginRun() override;
38  virtual void event() override;
39  virtual void endRun() override;
40  virtual void terminate() override;
41 
42  // Data members
43  private:
44 
45  };
47 } // end namespace Belle2
48 
The base class for the histogram analysis module.
Class definition for the output module of Sequential ROOT I/O.
virtual void initialize() override
Module functions to be called from main process.
virtual void event() override
This method is the core of the module.
virtual void endRun() override
This method is called if the current run ends.
virtual void terminate() override
This method is called at the end of the event processing.
virtual void beginRun() override
Module functions to be called from event process.
DQMHistAnalysisOutputModule()
Constructor / Destructor.
Abstract base class for different kinds of events.