BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
DedxCalibMomentum.h
Go to the documentation of this file.
1#ifndef DEDXCALIBMOMENTUM_HH
2#define DEDXCALIBMOMENTUM_HH
3
4#include "TH1F.h"
5#include "TTree.h"
6#include "vector"
7
9
10using namespace std;
11
13public:
14 DedxCalibMomentum( 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_chi;
25 TH1F** m_pos_chi;
26 TH1F** m_neg_chi;
27 TH1F** m_dedx;
28 TH1F** m_pos_dedx;
29 TH1F** m_neg_dedx;
30 TH1F** m_hits;
31
32 vector<double> Vec_dedx;
33 vector<double> Vec_ptrk;
34 double pMin, pMax, bin_step;
35};
36#endif
DedxCalibMomentum(const std::string &name, ISvcLocator *pSvcLocator)
DedxCalib(const std::string &name, ISvcLocator *pSvcLocator)
Definition DedxCalib.cxx:12