Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PHG4CylinderCellv3.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PHG4CylinderCellv3.cc
1 #include "PHG4CylinderCellv3.h"
2 
3 using namespace std;
4 
7  , j_index(-9999)
8  , k_index(-9999)
9  , l_index(-9999)
10 {
11 }
12 
13 void PHG4CylinderCellv3::identify(std::ostream& os) const
14 {
15  os << "PHG4CylinderCellv3: #" << cellid << " ";
16  os << "(layer,e,j_index,k_index,l_index) = (";
17  os << layer << ",";
18  os << get_edep() << ",";
19  os << get_j_index() << ",";
20  os << get_k_index() << ",";
21  os << get_l_index() << ",";
22  os << ")";
23  os << endl;
24 }