Go to the source code of this file.
std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const CSCSegment & |
seg |
|
) |
| |
Definition at line 190 of file CSCSegment.cc.
References mathSSE::sqrt().
191 os <<
"CSCSegment: local pos = " << seg.localPosition() <<
192 " posErr = (" <<
sqrt(seg.localPositionError().xx())<<
","<<
sqrt(seg.localPositionError().yy())<<
194 " dir = " << seg.localDirection() <<
195 " dirErr = (" <<
sqrt(seg.localDirectionError().xx())<<
","<<
sqrt(seg.localDirectionError().yy())<<
197 " chi2/ndf = " << seg.chi2()/double(seg.degreesOfFreedom()) <<
198 " #rechits = " << seg.specificRecHits().size()<<
199 " ME1/1a duplicates : "<<seg.duplicateSegments().size();