Belle II Software  release-06-01-15
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/analysis/modules/DQMHistAnalysis.h>
12 
13 #include <TCanvas.h>
14 
15 namespace Belle2 {
23 
24  // Public functions
25  public:
26 
31 
33  void initialize() override;
35  void event() override;
36 
37  // parameters
38  bool m_printCanvas = false;
40  private:
41 
42  int m_statThreshold = 1000;
43  double m_failureRateThreshold = 0.01;
47 
48  TCanvas* m_cAbortRate = nullptr;
50  TCanvas* m_cAbortRateHER = nullptr;
51  TCanvas* m_cAbortRateLER = nullptr;
52  };
54 } // end namespace Belle2
55 
The base class for the histogram analysis module.
void initialize() override
Module function initialize.
int m_statThreshold
minimal number of events to judge
void event() override
Module function event.
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
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
MonitoringObject is a basic object to hold data for the run-dependency monitoring Run summary TCanvas...
Abstract base class for different kinds of events.