BOSS 7.0.5
BESIII Offline Software System
Loading...
Searching...
No Matches
Tof/TofCaliSvc/TofCaliSvc-00-01-19/TofCaliSvc/EtfBunchCal.h
Go to the documentation of this file.
1#ifndef ETF_BUNCHCAL_H
2#define ETF_BUNCHCAL_H
3
4const unsigned int nEtfBunch = 4;
5
6class EtfBunchCal{
7 public:
10
11 public:
12 double getBunchP(int idx) const{ return m_pbunch[idx]; }
13
14 public:
15 void setBunchP(int idx,double pbunch) { m_pbunch[idx] = pbunch; }
16
17 private:
18 double m_pbunch[nEtfBunch];
19
20};
21#endif