Belle II Software development
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
21namespace Belle2 {
26 namespace SoftwareTrigger {
27
31
32 // Public functions
33 public:
34
37 virtual ~CosmicRayHLTDQMModule();
38
40 virtual void initialize() override;
41
43 virtual void event() override;
44
46 virtual void defineHisto() override;
47
48
49 private:
52
53 //CDC
55 TH1F* h_d0;
57 TH1F* h_z0;
59 TH1F* h_ntrk;
61 TH1F* h_p[5];
63 TH1F* h_pValue;
67 TH1F* h_phi0;
69 TH1F* h_charge;
70
71 //ECL
84
86 TH1F* h_nshower;
91
92 //KLM
105
106
107 };
108
109 } // end namespace SoftwareTrigger
111} // 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.