Belle II Software  release-08-01-10
CosmicRayHLTDQMModule.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 : CosmicRayHLTDQMModule.h
10 // Description : Module to monitor the reconstruction of cosmic ray on hlt
11 //-
12 
13 #pragma once
14 
15 #include <string>
16 
17 #include <TH1F.h>
18 
19 #include <framework/core/HistoModule.h>
20 
21 namespace Belle2 {
26  namespace SoftwareTrigger {
27 
34 
35  // Public functions
36  public:
37 
40  virtual ~CosmicRayHLTDQMModule();
41 
43  virtual void initialize() override;
44 
46  virtual void event() override;
47 
49  virtual void defineHisto() override;
50 
51 
52  private:
55 
56  //CDC
58  TH1F* h_d0;
60  TH1F* h_z0;
62  TH1F* h_ntrk;
64  TH1F* h_p[5];
66  TH1F* h_pValue;
68  TH1F* h_ncdchits;
70  TH1F* h_phi0;
72  TH1F* h_charge;
73 
74  //ECL
76  TH1F* h_ncluster;
87 
89  TH1F* h_nshower;
94 
95  //KLM
97  TH1F* h_nbklmhit;
103  TH1F* h_neklmhit;
108 
109 
110  };
111 
112  } // end namespace SoftwareTrigger
114 } // 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
A class definition of an input module for Sequential ROOT I/O.
TH1F * h_pValue
chi2 probalility of the track fit
TH1F * h_sectorId_eklmhit
sector ID of hits in eKLM
TH1F * h_sectorId_bklmhit
sector ID of hits in bKLM
TH1F * h_ncdchits
Number of CDC hits associated to CDC track.
virtual void initialize() override
Module functions to be called from main process.
virtual void event() override
Module functions to be called from event process.
TH1F * h_d0
Signed distance to the POCA in the r-phi plane.
TH1F * h_theta_eclcluster
theta angle of ECLCluster position
TH1F * h_phi_eclcluster
phi angle of ECLCluster position
TH1F * h_phi0
Angle of the transverse momentum in the r-phi plane.
std::string m_param_histogramDirectoryName
Directory to put the generated histograms.
TH1F * h_p[5]
momentum information of track
virtual void defineHisto() override
Histogram definition.
Abstract base class for different kinds of events.