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