BOSS 7.0.3
BESIII Offline Software System
Loading...
Searching...
No Matches
Calibration/CalibData/CalibData-00-01-18/CalibData/Tof/etfBunchCalibBase.h
Go to the documentation of this file.
1#ifndef CalibData_etfBunchCalibBase_h
2#define CalibData_etfBunchCalibBase_h
3
4#include "GaudiKernel/DataObject.h"
5#include "CalibData/CalibModel.h"
6#include <vector>
7
8namespace CalibData {
10 public:
12
13 virtual ~etfBunchCalibBase() {}
14
15 //set the bunch offset of etf
16 void setPBunch(const double* etfBunchP);
17
18 //get the bunch offset of etf
19 double getPBunch(int No) const { return m_pBunch[No]; }
20
21 private:
22 double m_pBunch[4];
23
24 };
25}
26
27#endif
void setPBunch(const double *etfBunchP)