BOSS 7.0.1
BESIII Offline Software System
Loading...
Searching...
No Matches
InstallArea/include/EstTofCaliSvc/EstTofCaliSvc/ETofCal.h
Go to the documentation of this file.
1#ifndef ETOF_CAL_H
2#define ETOF_CAL_H
3
4const unsigned int nEndPar = 8;
5
6class ETofCal{
7 public:
8 ETofCal() {}
10 public:
11 double getP(int i)const{ return m_p[i]; }
12 void setP(int i,double p){ m_p[i] = p;}
13
14 private:
15 double m_p[nEndPar]; // time calibration constant
16};
17#endif