#include <DataFormats/CSCRecHit/interface/CSCSegment.h>
#include <iostream>
Go to the source code of this file.
Functions | |
DetId | buildDetId (CSCDetId id) |
std::ostream & | operator<< (std::ostream &os, const CSCSegment &seg) |
Definition in file CSCSegment.cc.
std::ostream& operator<< | ( | std::ostream & | os, | |
const CSCSegment & | seg | |||
) |
Definition at line 90 of file CSCSegment.cc.
References CSCSegment::chi2(), CSCSegment::localDirection(), CSCSegment::localPosition(), and CSCSegment::specificRecHits().
00090 { 00091 os << "CSCSegment: local pos = " << seg.localPosition() << 00092 " dir = " << seg.localDirection() << 00093 " chi2 = " << seg.chi2() << " #rechits = " << seg.specificRecHits().size(); 00094 return os; 00095 }