ECCE @ EIC 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 using namespace std;
6 
8  tiltangle(NAN),
9  phi_slat_zero(NAN)
10 {
11  return;
12 }
13 
14 void
15 PHG4CylinderGeomv3::identify(std::ostream& os) const
16 {
17  os << "PHG4CylinderGeomv3: layer: " << layer
18  << ", radius: " << radius
19  << ", thickness: " << thickness
20  << ", zmin: " << zmin
21  << ", zmax: " << zmax
22  << ", num scint: " << nscint
23  << ", tilt: " << tiltangle/M_PI*180. << " deg"
24  << ", phi at slat #0: " << phi_slat_zero/M_PI*180.
25  << endl;
26  return;
27 }