BOSS 7.0.5
BESIII Offline Software System
Loading...
Searching...
No Matches
InstallArea/include/DedxCalibAlg/DedxCalibAlg/DedxCalibRunByRun.h
Go to the documentation of this file.
1#ifndef DEDXCALIBRUNBYRUN_HH
2#define DEDXCALIBRUNBYRUN_HH
3
4#include "TH1F.h"
5
6#include "DedxCalibAlg/DedxCalib.h"
7
8using namespace std;
10{
11 public:
12 DedxCalibRunByRun(const std::string& name, ISvcLocator* pSvcLocator);
14 void initializing() {}
15 void BookHists();
16 void genNtuple() {}
17 void FillHists();
18 void AnalyseHists();
19 void WriteHists();
20
21 private:
22 struct runevt{
23 float runno;
24 float evtfrom;
25 float evtto;
26 int global_index;
27 int local_index;
28 };
29 vector<struct runevt> m_evtNOVector;
30 //vector<float> m_runNOVector; // replaced by m_evtNOVector
31 TH1F** m_rungain;
32 TH1F* m_hist;
33};
34#endif