Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:48

0001 #include "DataFormats/CaloRecHit/interface/CaloRecHit.h"
0002 
0003 std::ostream& operator<<(std::ostream& s, const CaloRecHit& hit) {
0004   s << hit.detid().rawId() << ", " << hit.energy() << " GeV, " << hit.time() << " ns ";
0005   s << " flags=0x" << std::hex << hit.flags() << std::dec << " ";
0006   s << " aux=0x" << std::hex << hit.aux() << std::dec << " ";
0007   return s;
0008 }