Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:05:25

0001 #include "DetectorDescription/Core/interface/Box.h"
0002 #include "DataFormats/Math/interface/GeantUnits.h"
0003 
0004 #include <ostream>
0005 
0006 using namespace geant_units::operators;
0007 
0008 void DDI::Box::stream(std::ostream& os) const {
0009   os << " xhalf[cm]=" << convertMmToCm(p_[0]) << " yhalf[cm]=" << convertMmToCm(p_[1])
0010      << " zhalf[cm]=" << convertMmToCm(p_[2]);
0011 }