BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Calibration/CalibData/include/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 "CalibData/CalibModel.h"
12#include "GaudiKernel/DataObject.h"
13#include <vector>
14
15namespace CalibData {
17 public:
19
21
22 // set the Calibdata of Tof
23 void setOffset( const double* offset );
24 void setSigmaCorr( const double* sigmaCorr );
25
26 // get the CalibData of Tof
27 double getOffset( int No ) const { return m_offset[No]; }
28 double getSigmaCorr( int No ) const { return m_sigmaCorr[No]; }
29
30 private:
31 double m_offset[2];
32 double m_sigmaCorr[8];
33 };
34} // namespace CalibData
35
36#endif
void setSigmaCorr(const double *sigmaCorr)
void setOffset(const double *offset)