#include "DataFormats/TrackingRecHit/interface/RecHit2DLocalPos.h"
#include "DataFormats/MuonDetId/interface/RPCDetId.h"
Go to the source code of this file.
Classes | |
class | RPCRecHit |
RecHit for RPC. More... | |
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 }