Belle II Software development
TTDDQMModule.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 <framework/core/HistoModule.h>
12#include <framework/datastore/StoreObjPtr.h>
13#include <rawdata/dataobjects/RawFTSW.h>
14#include <mdst/dataobjects/EventLevelTriggerTimeInfo.h>
15#include <TH1.h>
16#include <TH2.h>
17#include <string>
18
19namespace Belle2 {
24
30 class TTDDQMModule : public HistoModule {
31
32 public:
33
36
37 private:
39
42
43
46
49
52
53 TH1I* hBunchInjLER{};
54 TH1I* hBunchInjHER{};
55
58
59 void initialize() override final;
60
61 void beginRun() override final;
62
63 void event() override final;
64
65 void defineHisto() override final;
66
67 };//end class declaration
68
69
71} // end namespace Belle2
HistoModule()
Constructor.
Definition HistoModule.h:32
Type-safe access to single objects in the data store.
Definition StoreObjPtr.h:96
void initialize() override final
initialize function
TH1I * hTriggersDeltaT
Histogram for Delta T to previous Trigger.
TH2I * hTrigAfterInjHER
Histogram Veto tuning triggers after HER injection.
TTDDQMModule()
Constructor defining the parameters.
TH2I * hTrigBunchInjLER
Histogram correlation triggered and injected bunch LER.
TH1I * hBunchInjHER
Histogram injected LER bunch (triggers)
void defineHisto() override final
defineHisto function
TH1I * hTrigBunchInjHERproj
Histogram offset triggered and injected bunch HER.
TH1I * hBunchInjLER
Histogram injected HER bunch (triggers)
void event() override final
event function
TH1I * hTrigBunchInjLERproj
Histogram offset triggered and injected bunch LER.
std::string m_histogramDirectoryName
Name of the histogram directory in ROOT file.
TH2I * hTrigBunchInjHER
Histogram correlation triggered and injected bunch HER.
TH2I * hTrigAfterInjLER
Histogram Veto tuning triggers after LER injection.
void beginRun() override final
beginRun function
StoreObjPtr< EventLevelTriggerTimeInfo > m_EventLevelTriggerTimeInfo
Input object for TTD mdst object.
TH1I * hTriggersPerBunch
Histogram for Triggers per Bunch.
Abstract base class for different kinds of events.