#include "DataFormats/DTRecHit/interface/DTRecSegment2D.h"
#include <iostream>
Go to the source code of this file.
Functions | |
ostream & | operator<< (ostream &os, const DTRecSegment2D &seg) |
Definition in file DTRecSegment2D.cc.
ostream& operator<< | ( | ostream & | os, | |
const DTRecSegment2D & | seg | |||
) |
Definition at line 73 of file DTRecSegment2D.cc.
References DTRecSegment2D::chi2(), DTRecSegment2D::degreesOfFreedom(), DTRecSegment2D::localDirection(), and DTRecSegment2D::localPosition().
00073 { 00074 os << "Pos " << seg.localPosition() << 00075 " Dir: " << seg.localDirection() << 00076 " chi2/ndof: " << seg.chi2() << "/" << seg.degreesOfFreedom() ; 00077 return os; 00078 }