![]() |
![]() |
#include "DataFormats/RPCRecHit/interface/RPCRecHit.h"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const RPCRecHit &hit) |
The ostream operator. |
std::ostream& operator<< | ( | std::ostream & | os, | |
const RPCRecHit & | hit | |||
) |
The ostream operator.
Definition at line 95 of file RPCRecHit.cc.
References RPCRecHit::localPosition(), RPCRecHit::localPositionError(), funct::sqrt(), PV3DBase< T, PVType, FrameType >::x(), and LocalError::xx().
00095 { 00096 os << "pos: " << hit.localPosition().x() ; 00097 os << " +/- " << sqrt(hit.localPositionError().xx()) ; 00098 return os; 00099 }