BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Tof/TofCaliSvc/include/TofCaliSvc/BTofCommonCal.h
Go to the documentation of this file.
1#ifndef BTOFCOMMON_CAL_H
2#define BTOFCOMMON_CAL_H
3
4const unsigned int nBarSigCor = 8;
5const unsigned int nBarOffset = 2;
6
7class BTofCommonCal {
8public:
11
12public:
13 double getSigmaCorr( int idx ) const { return m_sigmac[idx]; }
14 double getOffset( int idx ) const { return m_offset[idx]; }
15
16public:
17 void setSigmaCorr( int idx, double sigmac ) { m_sigmac[idx] = sigmac; }
18 void setOffset( int idx, double offset ) { m_offset[idx] = offset; }
19
20private:
21 double m_sigmac[nBarSigCor];
22 double m_offset[nBarOffset];
23};
24#endif
const unsigned int nBarOffset
const unsigned int nBarSigCor