BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Tof/TofGeomSvc/include/TofGeomSvc/BTofGeo.h
Go to the documentation of this file.
1#ifndef BTOF_GEO_H
2#define BTOF_GEO_H
3
4class BTofGeo {
5public:
6 BTofGeo() {}
8
9public:
10 double getInrad() const { return m_inrad; }
11 double getThick() const { return m_thick; }
12 double getPhiMax() const { return m_phiMax; }
13 double getPhiMin() const { return m_phiMin; }
14 double getLength() const { return m_length; }
15 void setInrad( double inrad ) { m_inrad = inrad; }
16 void setThick( double thick ) { m_thick = thick; }
17 void setPhiMax( double phiMax ) { m_phiMax = phiMax; }
18 void setPhiMin( double phiMax ) { m_phiMin = phiMax; }
19 void setLength( double length ) { m_length = length; }
20
21private:
22 double m_inrad;
23 double m_thick;
24 double m_phiMin;
25 double m_phiMax;
26 double m_length;
27};
28#endif