Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:04:19

0001 #include "DataFormats/HcalRecHit/interface/HFRecHit.h"
0002 
0003 std::ostream& operator<<(std::ostream& s, const HFRecHit& hit) {
0004   s << hit.id() << ": " << hit.energy() << " GeV";
0005   if (hit.time() > -998) {
0006     s << ", t= " << hit.time() << " to " << hit.timeFalling() << " ns";
0007   }
0008   return s;
0009 }