File indexing completed on 2025-08-05 08:17:46
0001 #include "PHG4CylinderGeomv3.h"
0002
0003 #include <cmath>
0004
0005 void PHG4CylinderGeomv3::identify(std::ostream& os) const
0006 {
0007 os << "PHG4CylinderGeomv3: layer: " << layer
0008 << ", radius: " << radius
0009 << ", thickness: " << thickness
0010 << ", zmin: " << zmin
0011 << ", zmax: " << zmax
0012 << ", num scint: " << nscint
0013 << ", tilt: " << tiltangle / M_PI * 180. << " deg"
0014 << ", phi at slat #0: " << phi_slat_zero / M_PI * 180.
0015 << std::endl;
0016 return;
0017 }