|
||||
File indexing completed on 2024-04-06 12:30:42
0001 #include "SimMuon/CSCDigitizer/src/CSCDetectorHit.h" 0002 #include <iostream> 0003 0004 std::ostream &operator<<(std::ostream &stream, const CSCDetectorHit &hit) { 0005 stream << "element: " << hit.getElement() << " charge: " << hit.getCharge() << " pos: " << hit.getPosition() 0006 << " time: " << hit.getTime() << std::endl; 0007 return stream; 0008 }
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |