#include "DataFormats/DTRecHit/interface/DTRecSegment4D.h"
#include "DataFormats/MuonDetId/interface/DTChamberId.h"
#include "FWCore/Utilities/interface/Exception.h"
#include <iosfwd>
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const DTRecSegment4D &seg) |
Definition in file DTRecSegment4D.cc.
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 }