Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:18:57

0001 #include "PHG4CylinderCellv3.h"
0002 
0003 using namespace std;
0004 
0005 PHG4CylinderCellv3::PHG4CylinderCellv3()
0006   : PHG4CylinderCellv1()
0007   , j_index(-9999)
0008   , k_index(-9999)
0009   , l_index(-9999)
0010 {
0011 }
0012 
0013 void PHG4CylinderCellv3::identify(std::ostream& os) const
0014 {
0015   os << "PHG4CylinderCellv3: #" << cellid << " ";
0016   os << "(layer,e,j_index,k_index,l_index) = (";
0017   os << layer << ",";
0018   os << get_edep() << ",";
0019   os << get_j_index() << ",";
0020   os << get_k_index() << ",";
0021   os << get_l_index() << ",";
0022   os << ")";
0023   os << endl;
0024 }