Class Reference for E1039 Core & Analysis Software
PHG4CylinderGeomv2.cc
Go to the documentation of this file.
1 #include "PHG4CylinderGeomv2.h"
2 
3 #include <phparameter/PHParameters.h>
4 
5 using namespace std;
6 
8  nscint(-9999)
9 {
10  return;
11 }
12 
13 void
14 PHG4CylinderGeomv2::identify(std::ostream& os) const
15 {
16  os << "PHG4CylinderGeomv2: layer: " << layer
17  << ", radius: " << radius
18  << ", thickness: " << thickness
19  << ", zmin: " << zmin
20  << ", zmax: " << zmax
21  << ", num scint: " << nscint
22  << endl;
23  return;
24 }
25 
26 void
28 {
30 
31  if (param.exist_int_param("nscint")) nscint = param.get_int_param("nscint");
32 
33  return;
34 }
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
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