Belle II Software development
DQMHistAnalysisTrackingHLT.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#include <dqm/core/DQMHistAnalysis.h>
12
13#include <TCanvas.h>
14
15namespace Belle2 {
23
24 // Public functions
25 public:
26
31
33 void initialize() override final;
35 void event() override final;
37 void beginRun() override final;
38
39 // parameters
40 bool m_printCanvas = false;
42 private:
43
44 int m_statThreshold = 1000;
48
49 TCanvas* m_cAbortRateHER = nullptr;
50 TCanvas* m_cAbortRateLER = nullptr;
51 };
53} // end namespace Belle2
54
The base class for the histogram analysis module.
void initialize() override final
Module function initialize.
int m_statThreshold
minimal number of events to judge
MonitoringObject * m_monObj
Monitoring Object to be produced by this module, which contain defined canvases and monitoring variab...
void event() override final
Module function event.
TCanvas * m_cAbortRateHER
canvas for the 2D abort rate plot for HER
TCanvas * m_cAbortRateLER
canvas for the 2D abort rate plot for LER
bool m_printCanvas
if true print the pdf of the canvases
void beginRun() override final
Module function doing stuff at beginning of a run.
MonitoringObject is a basic object to hold data for the run-dependency monitoring Run summary TCanvas...
Abstract base class for different kinds of events.