BOSS 7.1.2
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/AlgFactory.h"
4#include "GaudiKernel/Algorithm.h"
5#include "TH2F.h"
6#include "TH1F.h"
7class ITHistSvc;
8class DQA_TOF : public Algorithm {
9
10 public:
11 DQA_TOF(const std::string& name, ISvcLocator* pSvcLocator);
12 StatusCode initialize();
13 StatusCode execute();
14 StatusCode finalize();
15
16 private:
17
18 ITHistSvc* m_thsvc;
19 TH1F* h_path;
20 TH1F* h_Bzrhit;
21 TH1F* h_Ezrhit;
22 TH1F* h_ph;
23
24 TH2F* W_delT; //delT--->sigma
25 TH2F* E_delT;
26 TH2F* counter;
27 TH2F* cluster;
28 TH2F* EC_delT;
29 TH1F* Bt_delT;
30 TH1F* Et_delT;
31
32 TH2F* B_path;
33 TH2F* E_path;
34
35 TH2F* delT_z1; //delT --->sigma
36 TH2F* delT_z2;
37 TH2F* delT_z3;
38 TH2F* delT_z4;
39
40 TH2F* W_delT_Q; //delT--->sigma
41 TH2F* E_delT_Q;
42
43 TH1F* delT_pp;
44 TH1F* delT_pm;
45 TH1F* delT_pi;
46 TH1F* delT_k;
47};
48
49
50#endif
51
StatusCode finalize()
Definition DQA_TOF.cxx:216
StatusCode execute()
Definition DQA_TOF.cxx:101
DQA_TOF(const std::string &name, ISvcLocator *pSvcLocator)
Definition DQA_TOF.cxx:26
StatusCode initialize()
Definition DQA_TOF.cxx:32