BOSS 7.1.1
BESIII Offline Software System
Loading...
Searching...
No Matches
ETofGeo.h
Go to the documentation of this file.
1#ifndef ETOF_GEO_H
2#define ETOF_GEO_H
3
4class ETofGeo{
5 public:
6 ETofGeo() {}
8 public:
9 double getInrad() const { return m_inrad; }
10 double getOutrad() const { return m_outrad; }
11 double getThick() const { return m_thick; }
12 double getPhiMax() const { return m_phiMax; }
13 double getPhiMin() const { return m_phiMin; }
14 double getThetaMax() const { return m_thetaMax; }
15 double getThetaMin() const { return m_thetaMin; }
16 void setInrad(double inrad) { m_inrad=inrad; }
17 void setOutrad(double outrad) { m_outrad=outrad; }
18 void setThick(double thick) { m_thick=thick; }
19 void setPhiMax(double phiMax) { m_phiMax=phiMax; }
20 void setPhiMin(double phiMax) { m_phiMin=phiMax; }
21 void setThetaMax(double thetaMax){ m_thetaMax=thetaMax; }
22 void setThetaMin(double thetaMax){ m_thetaMin=thetaMax; }
23 private:
24 double m_inrad;
25 double m_outrad;
26 double m_thick;
27 double m_phiMax;
28 double m_phiMin;
29 double m_thetaMax;
30 double m_thetaMin;
31};
32#endif
void setInrad(double inrad)
Definition ETofGeo.h:16
~ETofGeo()
Definition ETofGeo.h:7
void setThetaMax(double thetaMax)
Definition ETofGeo.h:21
double getInrad() const
Definition ETofGeo.h:9
void setPhiMin(double phiMax)
Definition ETofGeo.h:20
void setThetaMin(double thetaMax)
Definition ETofGeo.h:22
void setThick(double thick)
Definition ETofGeo.h:18
double getOutrad() const
Definition ETofGeo.h:10
double getPhiMax() const
Definition ETofGeo.h:12
double getThetaMin() const
Definition ETofGeo.h:15
double getPhiMin() const
Definition ETofGeo.h:13
ETofGeo()
Definition ETofGeo.h:6
double getThick() const
Definition ETofGeo.h:11
void setPhiMax(double phiMax)
Definition ETofGeo.h:19
void setOutrad(double outrad)
Definition ETofGeo.h:17
double getThetaMax() const
Definition ETofGeo.h:14