Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:29:44

0001 #include "SimDataFormats/TrackingHit/interface/PSimHit.h"
0002 #include <ostream>
0003 
0004 std::ostream& operator<<(std::ostream& o, const PSimHit& hit) {
0005   return o << hit.detUnitId() << " " << hit.entryPoint() << " " << hit.tof();
0006 }