Belle II Software  release-06-02-00
PXDGatedDHCDQMModule.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 <framework/datastore/StoreArray.h>
14 #include <rawdata/dataobjects/RawFTSW.h>
15 #include <pxd/dataobjects/PXDDAQStatus.h>
16 
17 #include <TH2F.h>
18 #include <string>
19 
20 namespace Belle2 {
26  namespace PXD {
37 
38  public:
39 
42 
43  private:
48 
51 
52  TH2F* hGateAfterInjLER{};
53  TH2F* hGateAfterInjHER{};
55  void initialize() override final;
57  void beginRun() override final;
59  void event() override final;
61  void defineHisto() override final;
63  };//end class declaration
64 
65 
66  } //end PXD namespace;
68 } // end namespace Belle2
HistoModule.h is supposed to be used instead of Module.h for the modules with histogram definitions t...
Definition: HistoModule.h:29
The PXD Gatint after Injection DQM module.
void initialize() override final
initialize function
TH2F * hGateAfterInjHER
Histogram after HER injection.
StoreObjPtr< PXDDAQStatus > m_storeDAQEvtStats
Input array for DAQ Status.
TH2F * hGateAfterInjLER
Histogram after LER injection.
StoreArray< RawFTSW > m_rawTTD
Input array for DAQ Status.
void defineHisto() override final
defineHisto function
void event() override final
event function
std::string m_histogramDirectoryName
Name of the histogram directory in ROOT file.
void beginRun() override final
beginRun function
PXDGatedDHCDQMModule()
Constructor defining the parameters.
Accessor to arrays stored in the data store.
Definition: StoreArray.h:113
Type-safe access to single objects in the data store.
Definition: StoreObjPtr.h:95
Abstract base class for different kinds of events.