Belle II Software  release-08-01-10
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 
15 namespace 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;
45  double m_failureRateThreshold = 0.01;
49 
50  TCanvas* m_cAbortRate = nullptr;
52  TCanvas* m_cAbortRateHER = nullptr;
53  TCanvas* m_cAbortRateLER = nullptr;
54  };
56 } // end namespace Belle2
57 
The base class for the histogram analysis module.
void initialize() override final
Module function initialize.
int m_statThreshold
minimal number of events to judge
double m_failureRateThreshold
above this rate, there is maybe a problem?
MonitoringObject * m_monObj
Monitoring Object to be produced by this module, which contain defined canvases and monitoring variab...
TCanvas * m_cAbortRate
canvas for the abort rate plot
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.