Analysis Software
Documentation for sPHENIX simulation 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 PHG4CylinderGeomv2::identify(std::ostream& os) const
6 {
7  os << "PHG4CylinderGeomv2: layer: " << layer
8  << ", radius: " << radius
9  << ", thickness: " << thickness
10  << ", zmin: " << zmin
11  << ", zmax: " << zmax
12  << ", num scint: " << nscint
13  << std::endl;
14  return;
15 }
16 
18 {
20 
21  if (param.exist_int_param("nscint")) nscint = param.get_int_param("nscint");
22 
23  return;
24 }