Belle II Software development
DQMHistAnalysisEpicsOutput.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
15namespace Belle2 {
25
26 public:
27
32
36 void initialize(void) override final;
37
41 void event(void) override final;
42
46 void beginRun(void) override final;
47
51 void endRun(void) override final;
52
53 protected:
54
55 };
56
58} // Belle2 namespace
Example module of how to use MonitoringObject in DQMHistAnalysis module.
void initialize(void) override final
Initialize the Module.
void endRun(void) override final
End run action.
void beginRun(void) override final
End run action.
void event(void) override final
Event action.
The base class for the histogram analysis module.
Abstract base class for different kinds of events.