Belle II Software  release-05-01-25
PXDGatedDHCDQMModule.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2019 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Bjoern Spruck *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #pragma once
12 
13 #include <framework/core/HistoModule.h>
14 #include <framework/datastore/StoreObjPtr.h>
15 #include <framework/datastore/StoreArray.h>
16 #include <rawdata/dataobjects/RawFTSW.h>
17 #include <pxd/dataobjects/PXDDAQStatus.h>
18 
19 #include <TH2F.h>
20 #include <string>
21 
22 namespace Belle2 {
28  namespace PXD {
38  class PXDGatedDHCDQMModule : public HistoModule {
39 
40  public:
41 
44 
45  private:
50 
53 
54  TH2F* hGateAfterInjLER{};
55  TH2F* hGateAfterInjHER{};
57  void initialize() override final;
59  void beginRun() override final;
61  void event() override final;
63  void defineHisto() override final;
65  };//end class declaration
66 
67 
68  } //end PXD namespace;
70 } // end namespace Belle2
Belle2::PXD::PXDGatedDHCDQMModule::defineHisto
void defineHisto() override final
defineHisto function
Definition: PXDGatedDHCDQMModule.cc:36
Belle2::PXD::PXDGatedDHCDQMModule::beginRun
void beginRun() override final
beginRun function
Definition: PXDGatedDHCDQMModule.cc:55
Belle2::PXD::PXDGatedDHCDQMModule::event
void event() override final
event function
Definition: PXDGatedDHCDQMModule.cc:62
Belle2::PXD::PXDGatedDHCDQMModule::PXDGatedDHCDQMModule
PXDGatedDHCDQMModule()
Constructor defining the parameters.
Definition: PXDGatedDHCDQMModule.cc:27
Belle2::PXD::PXDGatedDHCDQMModule::m_storeDAQEvtStats
StoreObjPtr< PXDDAQStatus > m_storeDAQEvtStats
Input array for DAQ Status.
Definition: PXDGatedDHCDQMModule.h:60
Belle2::PXD::PXDGatedDHCDQMModule::hGateAfterInjLER
TH2F * hGateAfterInjLER
Histogram after LER injection.
Definition: PXDGatedDHCDQMModule.h:62
Belle2::PXD::PXDGatedDHCDQMModule::m_histogramDirectoryName
std::string m_histogramDirectoryName
Name of the histogram directory in ROOT file.
Definition: PXDGatedDHCDQMModule.h:54
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::StoreObjPtr
Type-safe access to single objects in the data store.
Definition: ParticleList.h:33
Belle2::PXD::PXDGatedDHCDQMModule::hGateAfterInjHER
TH2F * hGateAfterInjHER
Histogram after HER injection.
Definition: PXDGatedDHCDQMModule.h:63
Belle2::StoreArray
Accessor to arrays stored in the data store.
Definition: ECLMatchingPerformanceExpertModule.h:33
Belle2::PXD::PXDGatedDHCDQMModule::m_rawTTD
StoreArray< RawFTSW > m_rawTTD
Input array for DAQ Status.
Definition: PXDGatedDHCDQMModule.h:57
Belle2::PXD::PXDGatedDHCDQMModule::initialize
void initialize() override final
initialize function
Definition: PXDGatedDHCDQMModule.cc:48