#include "FastSimulation/CaloGeometryTools/interface/CaloPoint.h"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &ost, const CaloPoint &cid) |
std::ostream& operator<< | ( | std::ostream & | ost, |
const CaloPoint & | cid | ||
) |
Definition at line 4 of file CaloPoint.cc.
{ ost << " DetId " ; if(!cid.getDetId().null()) ost << (uint32_t)cid.getDetId()(); else ost << cid.whichDetector(); // ost << " Side " << cid.getSide() << " Point " << (XYZPoint)cid; ost << " Point " << (math::XYZVector)cid; return ost; }