Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:58

0001 #include "CondFormats/Common/interface/ConfObject.h"
0002 
0003 void ConfObject::printSummary(std::stringstream& ss) const {
0004   parMap::const_iterator it = parameters.begin();
0005   for (; it != parameters.end(); ++it) {
0006     ss << "parameter name = " << it->first << " value = " << it->second << std::endl;
0007   }
0008 }
0009 
0010 void ConfObject::printDebug(std::stringstream& ss) const { printSummary(ss); }