![]() |
![]() |
#include "DataFormats/TrackingRecHit/interface/RecSegment.h"
#include "DataFormats/DTRecHit/interface/DTSLRecSegment2D.h"
#include "DataFormats/DTRecHit/interface/DTChamberRecSegment2D.h"
#include <iosfwd>
Go to the source code of this file.
Classes | |
class | DTRecSegment4D |
4-parameter RecHits for MuonBarrel DT (x,y, dx/dz, dy/dz) More... | |
Functions | |
std::ostream & | operator<< (std::ostream &os, const DTRecSegment4D &seg) |
std::ostream& operator<< | ( | std::ostream & | os, | |
const DTRecSegment4D & | seg | |||
) |
Definition at line 240 of file DTRecSegment4D.cc.
References DTRecSegment4D::chi2(), DTRecSegment4D::degreesOfFreedom(), DTRecSegment4D::dimension(), DTRecSegment4D::localDirection(), and DTRecSegment4D::localPosition().
00240 { 00241 os << "Pos " << seg.localPosition() << 00242 " Dir: " << seg.localDirection() << 00243 " dim: " << seg.dimension() << 00244 " chi2/ndof: " << seg.chi2() << "/" << seg.degreesOfFreedom() ; 00245 return os; 00246 }