Go to the source code of this file.
std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const CSCRecHit2D & |
rh |
|
) |
| |
Output operator for CSCRecHit2D.
Definition at line 192 of file CSCRecHit2D.cc.
References mathSSE::sqrt().
193 os <<
"CSCRecHit2D: " <<
194 "local x: " << rh.localPosition().x() <<
" +/- " <<
sqrt( rh.localPositionError().xx() ) <<
195 " y: " << rh.localPosition().y() <<
" +/- " <<
sqrt( rh.localPositionError().yy() ) <<
196 " in strip X: " << rh.positionWithinStrip() <<
" +/- " << rh.errorWithinStrip() <<
197 " quality: " << rh.quality() <<
" tpeak: " << rh.tpeak() <<
" wireTime: " << rh.wireTime() << std::endl;
199 for(
size_t iS =0;iS< rh.nStrips();++iS){
200 os <<rh.channels(iS)<<
" ";
202 int nwgs = rh.nWireGroups();
204 os <<
"central wire: " << rh.hitWire() <<
" of " << nwgs <<
" wiregroup" << std::endl; }
206 os <<
"central wire: " << rh.hitWire() <<
" of " << nwgs <<
" wiregroups" << std::endl; }