Belle II Software  release-08-01-10
DQMHistAnalysisRunNr.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 : DQMHistAnalysisRunNr.h
10 // Description : DQM Analysis for RunNr Check
11 //-
12 
13 #pragma once
14 
15 #include <dqm/core/DQMHistAnalysis.h>
16 #include <TCanvas.h>
17 
18 namespace Belle2 {
26 
27  // Public functions
28  public:
29 
34 
39 
43  void initialize(void) override final;
44 
48  void beginRun(void) override final;
49 
53  void event(void) override final;
54 
58  void terminate(void) override final;
59 
60  private:
61 
62  // Data members
66  std::string m_prefix;
67 
69  TCanvas* m_cRunNr = nullptr;
70 
73 
74  };
76 } // end namespace Belle2
77 
The base class for the histogram analysis module.
DQM Histogram Analysis for PXD Common Modes.
void terminate(void) override final
This method is called at the end of the event processing.
void initialize(void) override final
Initializer.
std::string m_prefix
HLT/ERECO prefix for EPICS PVs.
MonitoringObject * m_monObj
Monitoring Object.
std::string m_histogramDirectoryName
name of histogram directory
void beginRun(void) override final
Called when entering a new run.
void event(void) override final
This method is called for each event.
MonitoringObject is a basic object to hold data for the run-dependency monitoring Run summary TCanvas...
Abstract base class for different kinds of events.