BOSS 7.0.5
BESIII Offline Software System
Loading...
Searching...
No Matches
Calibration/CalibData/CalibData-00-01-22/CalibData/Tof/bTofCommonCalibBase.h
Go to the documentation of this file.
1#ifndef CalibData_bTofCommonCalibBase_h
2#define CalibData_bTofCommonCalibBase_h
3
4/** @class CalibData_Mdct0_h
5
6 calibration data class t0
7 calibration infrastructure
8
9 @author huangb
10*/
11#include "GaudiKernel/DataObject.h"
12#include "CalibData/CalibModel.h"
13#include <vector>
14
15
16namespace CalibData {
18 public:
20
22 }
23
24 //set the Calibdata of Tof
25 void setOffset(const double* offset);
26 void setSigmaCorr(const double* sigmaCorr);
27
28 //get the CalibData of Tof
29 double getOffset(int No) const { return m_offset[No]; }
30 double getSigmaCorr(int No) const { return m_sigmaCorr[No]; }
31
32 private:
33 double m_offset[2];
34 double m_sigmaCorr[8];
35
36 };
37}
38
39
40#endif
void setSigmaCorr(const double *sigmaCorr)
void setOffset(const double *offset)