00001 #include "SimDataFormats/TrackingHit/interface/PSimHit.h" 00002 #include <ostream> 00003 00004 std::ostream & operator<<(std::ostream & o, const PSimHit & hit) 00005 { return o << hit.detUnitId() << " " << hit.entryPoint() << " " << hit.tof(); } 00006