BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
eTofCalibBase.cxx
Go to the documentation of this file.
1// $Header: /bes/bes/BossCvs/Calibration/CalibData/src/Tof/eTofCalibBase.cxx,v 1.6 2010/10/14
2// 05:25:29 huangb Exp $
3
4/** @class eTofCalibBase
5 * Implementation of Mdct0 calibration TCDS class
6 */
7
8#include "CalibData/Tof/eTofCalibBase.h"
9#include "GaudiKernel/MsgStream.h"
10
11namespace CalibData {
12
13 void eTofCalibBase::setAtten( const double* Atten ) {
14 for ( unsigned int i = 0; i < 8; i++ ) { m_Atten[i] = Atten[i]; }
15 }
16
17 void eTofCalibBase::setSpeed( const double* Speed ) {
18 for ( unsigned int i = 0; i < 4; i++ ) { m_Speed[i] = Speed[i]; }
19 }
20
21 void eTofCalibBase::setP( const double* TofP ) {
22 for ( unsigned int i = 0; i < 8; i++ ) { m_P[i] = TofP[i]; }
23 }
24
25 void eTofCalibBase::setFP( const double* TofFP ) {
26 for ( unsigned int i = 0; i < 5; i++ ) { m_FP[i] = TofFP[i]; }
27 }
28
29} // namespace CalibData
void setAtten(const double *Atten)
void setP(const double *TofP)
void setFP(const double *FP)
void setSpeed(const double *Speed)