BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Tof/EstTofCaliSvc/include/EstTofCaliSvc/EstBTofInnerCal.h
Go to the documentation of this file.
1#pragma once
2
3class EstBTofInnerCal {
4public:
7
8public:
9 double getInnP1( int im ) const { return m_innp1[im]; }
10 double getInnP2( int im ) const { return m_innp2[im]; }
11
12public:
13 void setInnP1( int idx, double innp1 ) { m_innp1[idx] = innp1; }
14 void setInnP2( int idx, double innp2 ) { m_innp2[idx] = innp2; }
15
16private:
17 double m_innp1[10];
18 double m_innp2[10];
19};