CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_7/src/CondFormats/Common/src/ConfObject.cc

Go to the documentation of this file.
00001 #include "CondFormats/Common/interface/ConfObject.h"
00002 
00003 void ConfObject::printSummary(std::stringstream & ss) const
00004 {
00005   parMap::const_iterator it = parameters.begin();
00006   for( ; it != parameters.end(); ++it ) {
00007     ss << "parameter name = " << it->first << " value = " << it->second << std::endl;
00008   }
00009 }
00010 
00011 void ConfObject::printDebug(std::stringstream & ss) const
00012 {
00013   printSummary(ss);
00014 }