Belle II Software  release-06-00-14
PhysicsObjectsDQMModule.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 // File : PysicsObjectsDQMModule.h
10 // Description : Module to monitor physics objects
11 //-
12 
13 #include <framework/core/HistoModule.h>
14 
15 #include <string>
16 #include "TH1F.h"
17 
18 namespace Belle2 {
28 
29  public:
30 
32 
33  void initialize() override;
34  void beginRun() override;
35  void event() override;
36  void endRun() override;
37  void terminate() override;
38 
39  void defineHisto() override;
40 
41  private:
43  TH1F* m_h_mKS0 = nullptr;
44 
46  TH1F* m_h_mPI0 = nullptr;
47 
49  TH1F* m_h_mUPS = nullptr;
50 
52  TH1F* m_h_R2 = nullptr;
53 
55  std::string m_triggerIdentifier = "";
56 
58  std::string m_triggerIdentifierMuMu = "";
59 
61  std::string m_pi0PListName = "";
62 
64  std::string m_ks0PListName = "";
65 
67  std::string m_upsPListName = "";
68  };
69 
71 } // end namespace Belle2
72 
HistoModule.h is supposed to be used instead of Module.h for the modules with histogram definitions t...
Definition: HistoModule.h:29
TH1F * m_h_mUPS
Ups invariant mass.
std::string m_ks0PListName
Name of the KS0 particle list.
void initialize() override
Function for dynamic initialization of module.
void event() override
Function to process event record.
void endRun() override
Function to process end_run record.
void terminate() override
Function to terminate module.
std::string m_triggerIdentifier
Trigger identifier string used to select events for the histograms.
TH1F * m_h_mPI0
PI0 invariant mass.
void beginRun() override
Function to process begin_run record.
TH1F * m_h_mKS0
KS0 invariant mass.
std::string m_upsPListName
Name of the Ups particle list.
std::string m_triggerIdentifierMuMu
Trigger identifier string used to select events for the mumu histograms.
std::string m_pi0PListName
Name of the pi0 particle list.
void defineHisto() override
Function to define histograms.
Abstract base class for different kinds of events.