Class Reference for E1039 Core & Analysis Software
PHG4CylinderGeomv1.h
Go to the documentation of this file.
1 #ifndef PHG4CylinderGeomv1_H__
2 #define PHG4CylinderGeomv1_H__
3 
4 #include "PHG4CylinderGeom.h"
5 
6 #include <phool/phool.h>
7 #include <cmath>
8 
10 {
11  public:
13  PHG4CylinderGeomv1(const double r, const double zmi, const double zma, const double thickn):
14  layer(-1),
15  radius(r),
16  zmin(zmi),
17  zmax(zma),
18  thickness(thickn)
19  {}
20 
21  virtual ~PHG4CylinderGeomv1() {}
22 
23  void identify(std::ostream& os = std::cout) const;
24  int get_layer() const {return layer;}
25  double get_radius() const {return radius;}
26  double get_thickness() const {return thickness;}
27  double get_zmin() const {return zmin;}
28  double get_zmax() const {return zmax;}
29 
30  void set_layer(const int i) {layer = i;}
31  void set_radius(const double r) {radius = r;}
32  void set_thickness(const double t) {thickness = t;}
33  void set_zmin(const double z) {zmin = z;}
34  void set_zmax(const double z) {zmax = z;}
35 
37  virtual void ImportParameters(const PHParameters & param);
38 
39  protected:
40  int layer;
41  double radius;
42  double zmin;
43  double zmax;
44  double thickness;
45 
46  ClassDef(PHG4CylinderGeomv1,1)
47 };
48 
49 #endif
void set_zmin(const double z)
void identify(std::ostream &os=std::cout) const
void set_layer(const int i)
double get_radius() const
double get_thickness() const
void set_radius(const double r)
void set_thickness(const double t)
double get_zmax() const
virtual void ImportParameters(const PHParameters &param)
load parameters from PHParameters, which interface to Database/XML/ROOT files
double get_zmin() const
void set_zmax(const double z)
PHG4CylinderGeomv1(const double r, const double zmi, const double zma, const double thickn)