ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PHG4CylinderCellv2.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PHG4CylinderCellv2.cc
1 #include "PHG4CylinderCellv2.h"
2 
3 using namespace std;
4 
7  ladder_phi_index(-9999),
8  ladder_z_index(-9999),
9  sensor_index("")
10 {}
11 
12 void
13 PHG4CylinderCellv2::identify(std::ostream& os) const
14 {
15  os << "PHG4CylinderCellv2: #" << cellid << " ";
16  os << "(layer,binz,binphi,e,sensor_index,phi_index,z_index) = (";
17  os << layer << ",";
18  os << binz << ",";
19  os << binphi << ",";
20  os << get_edep() << ",";
21  os << get_sensor_index() << ",";
22  os << get_ladder_phi_index() << ",";
23  os << get_ladder_z_index();
24  os << ")";
25  os << endl;
26 }