BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
DedxCalibCostheta.h
Go to the documentation of this file.
1#ifndef DEDXCALIBCOSTHETA_HH
2#define DEDXCALIBCOSTHETA_HH
3
4#include "TH1F.h"
5#include "TTree.h"
6#include "vector"
7
9
10using namespace std;
11
13public:
14 DedxCalibCostheta( const std::string& name, ISvcLocator* pSvcLocator );
16 void initializing() {}
17 void BookHists();
18 void genNtuple() {}
19 void FillHists();
20 void AnalyseHists();
21 void WriteHists();
22
23private:
24 TH1F** m_costheta;
25 TH1F** m_pos_costheta;
26 TH1F** m_neg_costheta;
27 TH1F** m_chi;
28 TH1F** m_pos_chi;
29 TH1F** m_neg_chi;
30 TH1F* m_dEdxVsCostheta;
31 TH1F* m_pos_dEdxVsCostheta;
32 TH1F* m_neg_dEdxVsCostheta;
33
34 vector<double> Vec_dedx;
35 vector<double> Vec_costheta;
36 bool m_debug, m_ave;
37 int m_debug_min, m_debug_max;
38 double pMin, pMax;
39};
40#endif
DedxCalibCostheta(const std::string &name, ISvcLocator *pSvcLocator)
DedxCalib(const std::string &name, ISvcLocator *pSvcLocator)
Definition DedxCalib.cxx:12