File indexing completed on 2025-08-06 08:18:57
0001 #include "PHG4CylinderGeomv2.h"
0002
0003 #include <phparameter/PHParameters.h>
0004
0005 void PHG4CylinderGeomv2::identify(std::ostream& os) const
0006 {
0007 os << "PHG4CylinderGeomv2: layer: " << layer
0008 << ", radius: " << radius
0009 << ", thickness: " << thickness
0010 << ", zmin: " << zmin
0011 << ", zmax: " << zmax
0012 << ", num scint: " << nscint
0013 << std::endl;
0014 return;
0015 }
0016
0017 void PHG4CylinderGeomv2::ImportParameters(const PHParameters& param)
0018 {
0019 PHG4CylinderGeomv1::ImportParameters(param);
0020
0021 if (param.exist_int_param("nscint"))
0022 {
0023 nscint = param.get_int_param("nscint");
0024 }
0025
0026 return;
0027 }