Class Reference for E1039 Core & Analysis Software
PHG4CylinderGeomv1.cc
Go to the documentation of this file.
1 #include "PHG4CylinderGeomv1.h"
2 
3 #include <phparameter/PHParameters.h>
4 
5 #include <cmath>
6 
7 using namespace std;
8 
10  layer(-1),
11  radius(NAN),
12  zmin(NAN),
13  zmax(NAN),
14  thickness(NAN)
15 {
16  return;
17 }
18 
19 void
20 PHG4CylinderGeomv1::identify(std::ostream& os) const
21 {
22  os << "PHG4CylinderGeomv1: layer: " << layer
23  << ", radius: " << radius
24  << ", thickness: " << thickness
25  << ", zmin: " << zmin
26  << ", zmax: " << zmax
27  << endl;
28  return;
29 }
30 
31 
32 void
34 {
36 
37  if (param.exist_int_param("layer")) layer = param.get_int_param("layer");
38  if (param.exist_double_param("radius")) radius = param.get_double_param("radius");
39  if (param.exist_double_param("zmin")) zmin = param.get_double_param("zmin");
40  if (param.exist_double_param("zmax")) zmax = param.get_double_param("zmax");
41  if (param.exist_double_param("thickness")) thickness = param.get_double_param("thickness");
42 
43  return;
44 }
virtual void ImportParameters(const PHParameters &param)
load parameters from PHParameters, which interface to Database/XML/ROOT files
void identify(std::ostream &os=std::cout) const
virtual void ImportParameters(const PHParameters &param)
load parameters from PHParameters, which interface to Database/XML/ROOT files
double get_double_param(const std::string &name) const
int get_int_param(const std::string &name) const
Definition: PHParameters.cc:60
bool exist_int_param(const std::string &name) const
Definition: PHParameters.cc:73
bool exist_double_param(const std::string &name) const