Belle II Software  release-08-01-10
DQMHistAnalysisMonObj.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 //DQM
12 #include <dqm/core/DQMHistAnalysis.h>
13 #include <TCanvas.h>
14 
15 namespace Belle2 {
25 
26  public:
27 
32 
37 
41  void initialize() override final;
42 
46  void endRun() override final;
47 
51  void terminate() override final;
52 
53  protected:
54 
55  TCanvas* m_c_main = NULL;
56  TCanvas* m_c_mask = NULL;
60  };
61 
63 } // Belle2 namespace
The base class for the histogram analysis module.
Example module of how to use MonitoringObject in DQMHistAnalysis module.
void initialize() override final
Initialize the Module.
MonitoringObject * m_monObj
MonitoringObject to be produced by this module.
void terminate() override final
Termination action.
TCanvas * m_c_mask
Canvas with histograms related to channel masking.
TCanvas * m_c_main
Canvas with main run summary histograms.
void endRun() override final
End-of-run action.
MonitoringObject is a basic object to hold data for the run-dependency monitoring Run summary TCanvas...
Abstract base class for different kinds of events.