CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_8_patch3/src/DetectorDescription/Core/src/Box.cc

Go to the documentation of this file.
00001 #include "DetectorDescription/Core/src/Box.h"
00002 #include "CLHEP/Units/GlobalSystemOfUnits.h"
00003 #include <ostream>
00004 
00005 void DDI::Box::stream(std::ostream & os) const
00006 {
00007    os << " xhalf[cm]=" << p_[0]/cm
00008       << " yhalf[cm]=" << p_[1]/cm
00009       << " zhalf[cm]=" << p_[2]/cm;
00010 
00011 }