Class Reference for E1039 Core & Analysis Software
PHG4CylinderCellv2.cc
Go to the documentation of this file.
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 }
double get_edep() const
PHG4CylinderCellDefs::keytype cellid
int get_ladder_phi_index() const
int get_ladder_z_index() const
std::string get_sensor_index() const
void identify(std::ostream &os=std::cout) const