Class Reference for E1039 Core & Analysis Software
PHG4CylinderGeomv3.cc
Go to the documentation of this file.
1 #include "PHG4CylinderGeomv3.h"
2 #include <cmath>
3 
4 using namespace std;
5 
7  tiltangle(NAN),
8  phi_slat_zero(NAN)
9 {
10  return;
11 }
12 
13 void
14 PHG4CylinderGeomv3::identify(std::ostream& os) const
15 {
16  os << "PHG4CylinderGeomv3: layer: " << layer
17  << ", radius: " << radius
18  << ", thickness: " << thickness
19  << ", zmin: " << zmin
20  << ", zmax: " << zmax
21  << ", num scint: " << nscint
22  << ", tilt: " << tiltangle/M_PI*180. << " deg"
23  << ", phi at slat #0: " << phi_slat_zero/M_PI*180.
24  << endl;
25  return;
26 }
void identify(std::ostream &os=std::cout) const