Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PHG4CylinderGeomv3.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PHG4CylinderGeomv3.cc
1 #include "PHG4CylinderGeomv3.h"
2 
3 #include <cmath>
4 
5 void PHG4CylinderGeomv3::identify(std::ostream& os) const
6 {
7  os << "PHG4CylinderGeomv3: layer: " << layer
8  << ", radius: " << radius
9  << ", thickness: " << thickness
10  << ", zmin: " << zmin
11  << ", zmax: " << zmax
12  << ", num scint: " << nscint
13  << ", tilt: " << tiltangle / M_PI * 180. << " deg"
14  << ", phi at slat #0: " << phi_slat_zero / M_PI * 180.
15  << std::endl;
16  return;
17 }