BOSS 6.6.4.p03
BESIII Offline Software System
Loading...
Searching...
No Matches
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
Definition: BTofGeo.h:4
void setPhiMin(double phiMax)
Definition: BTofGeo.h:17
double getThick() const
Definition: BTofGeo.h:10
BTofGeo()
Definition: BTofGeo.h:6
void setLength(double length)
Definition: BTofGeo.h:18
double getInrad() const
Definition: BTofGeo.h:9
void setThick(double thick)
Definition: BTofGeo.h:15
void setInrad(double inrad)
Definition: BTofGeo.h:14
~BTofGeo()
Definition: BTofGeo.h:7
double getLength() const
Definition: BTofGeo.h:13
void setPhiMax(double phiMax)
Definition: BTofGeo.h:16
double getPhiMin() const
Definition: BTofGeo.h:12
double getPhiMax() const
Definition: BTofGeo.h:11