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