CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_0/src/SimMuon/CSCDigitizer/src/CSCDetectorHit.cc

Go to the documentation of this file.
00001 #include "SimMuon/CSCDigitizer/src/CSCDetectorHit.h"
00002 #include <iostream>
00003 
00004 std::ostream & operator<<(std::ostream & stream, const CSCDetectorHit & hit) {
00005   stream << "element: " << hit.getElement()
00006          << "  charge: " << hit.getCharge()
00007          << "   pos:  " << hit.getPosition()
00008          << "   time: " << hit.getTime() << std::endl; 
00009   return stream;
00010 }
00011