BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
DQA_TOF.h
Go to the documentation of this file.
1#ifndef DQA_TOF_H
2#define DQA_TOF_H
3#include "GaudiKernel/Algorithm.h"
4#include "TH1F.h"
5#include "TH2F.h"
6
7class ITHistSvc;
8class DQA_TOF : public Algorithm {
9public:
10 DQA_TOF( const std::string& name, ISvcLocator* pSvcLocator );
11 StatusCode initialize();
12 StatusCode execute();
13 StatusCode finalize();
14
15private:
16 ITHistSvc* m_thsvc;
17 TH1F* h_path;
18 TH1F* h_Bzrhit;
19 TH1F* h_Ezrhit;
20 TH1F* h_ph;
21
22 TH2F* W_delT; // delT--->sigma
23 TH2F* E_delT;
24 TH2F* counter;
25 TH2F* cluster;
26 TH2F* EC_delT;
27 TH1F* Bt_delT;
28 TH1F* Et_delT;
29
30 TH2F* B_path;
31 TH2F* E_path;
32
33 TH2F* delT_z1; // delT --->sigma
34 TH2F* delT_z2;
35 TH2F* delT_z3;
36 TH2F* delT_z4;
37
38 TH2F* W_delT_Q; // delT--->sigma
39 TH2F* E_delT_Q;
40
41 TH1F* delT_pp;
42 TH1F* delT_pm;
43 TH1F* delT_pi;
44 TH1F* delT_k;
45};
46
47#endif
StatusCode finalize()
Definition DQA_TOF.cxx:225
StatusCode execute()
Definition DQA_TOF.cxx:94
DQA_TOF(const std::string &name, ISvcLocator *pSvcLocator)
Definition DQA_TOF.cxx:18
StatusCode initialize()
Definition DQA_TOF.cxx:24