ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PHG4CylinderGeomv2.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PHG4CylinderGeomv2.cc
1 #include "PHG4CylinderGeomv2.h"
2 
3 #include <phparameter/PHParameters.h>
4 
5 void
6 PHG4CylinderGeomv2::identify(std::ostream& os) const
7 {
8  os << "PHG4CylinderGeomv2: layer: " << layer
9  << ", radius: " << radius
10  << ", thickness: " << thickness
11  << ", zmin: " << zmin
12  << ", zmax: " << zmax
13  << ", num scint: " << nscint
14  << std::endl;
15  return;
16 }
17 
18 void
20 {
22 
23  if (param.exist_int_param("nscint")) nscint = param.get_int_param("nscint");
24 
25  return;
26 }