Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-10-17 08:19:26

0001 #include "RawClusterv2.h"
0002 
0003 void RawClusterv2::Reset()
0004 {
0005   RawClusterv1::Reset();
0006   _x_raw = std::numeric_limits<float>::quiet_NaN();
0007   _y_raw = std::numeric_limits<float>::quiet_NaN();
0008   _x_corr = std::numeric_limits<float>::quiet_NaN();
0009   _y_corr = std::numeric_limits<float>::quiet_NaN();
0010 }
0011 
0012 void RawClusterv2::identify(std::ostream& os) const
0013 {
0014   RawClusterv1::identify(os);
0015   os << "  [towerCoG raw=(" << _x_raw << "," << _y_raw << ") corr=("
0016      << _x_corr << "," << _y_corr << ")]\n";
0017 }