#include "RecoLocalMuon/DTSegment/src/DTSegmentCand.h"
#include "Geometry/DTGeometry/interface/DTSuperLayer.h"
#include "DataFormats/DTRecHit/interface/DTSLRecSegment2D.h"
#include "DataFormats/DTRecHit/interface/DTChamberRecSegment2D.h"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &out, const DTSegmentCand::AssPoint &hit) |
std::ostream & | operator<< (std::ostream &out, const DTSegmentCand &seg) |
Definition in file DTSegmentCand.cc.
std::ostream& operator<< | ( | std::ostream & | out, | |
const DTSegmentCand::AssPoint & | hit | |||
) |
Definition at line 202 of file DTSegmentCand.cc.
00202 { 00203 // out << "Hits " << (hit.first)->localPosition(DTEnums::Left) << 00204 // " " << hit.second << " Lay " << (hit.first)->layerNumber() << endl; 00205 return out; 00206 }
std::ostream& operator<< | ( | std::ostream & | out, | |
const DTSegmentCand & | seg | |||
) |
Definition at line 197 of file DTSegmentCand.cc.
References DTSegmentCand::chi2(), and DTSegmentCand::nHits().
00197 { 00198 out << " chi2/nHits: " << seg.chi2() << "/" << seg.nHits() ; 00199 return out; 00200 }