BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Calibration/CalibData/include/CalibData/Tof/etfBunchCalibBase.h
Go to the documentation of this file.
1#ifndef CalibData_etfBunchCalibBase_h
2#define CalibData_etfBunchCalibBase_h
3
4#include "CalibData/CalibModel.h"
5#include "GaudiKernel/DataObject.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} // namespace CalibData
25
26#endif
void setPBunch(const double *etfBunchP)