CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/DetectorDescription/Core/src/Solid.cc

Go to the documentation of this file.
00001 #include "DetectorDescription/Core/src/Solid.h"
00002 #include<ostream>
00003 
00004 void DDI::Solid::stream(std::ostream & os) const
00005 {
00006   std::vector<double>::const_iterator i = p_.begin();
00007   std::vector<double>::const_iterator e = p_.end();
00008   for (; i != e ; ++i) 
00009     os << *i << ' ';
00010 }