BOSS 7.1.1
BESIII Offline Software System
Loading...
Searching...
No Matches
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
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
const unsigned int nEtfBunch
Definition EtfBunchCal.h:4
void setBunchP(int idx, double pbunch)
Definition EtfBunchCal.h:15
double getBunchP(int idx) const
Definition EtfBunchCal.h:12