00001 #include "CondFormats/SiStripObjects/interface/SiStripConfObject.h" 00002 00003 void SiStripConfObject::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 SiStripConfObject::printDebug(std::stringstream & ss) const 00012 { 00013 printSummary(ss); 00014 }