Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #include "DataFormats/HcalRecHit/interface/CastorRecHit.h"
0002 
0003 CastorRecHit::CastorRecHit() : CaloRecHit() {}
0004 
0005 CastorRecHit::CastorRecHit(const HcalCastorDetId& id, float energy, float time) : CaloRecHit(id, energy, time) {}
0006 
0007 std::ostream& operator<<(std::ostream& s, const CastorRecHit& hit) {
0008   return s << hit.id() << ": " << hit.energy() << " GeV, " << hit.time() << " ns";
0009 }