CMS 3D CMS Logo

ConfObject.cc
Go to the documentation of this file.
2 
3 void ConfObject::printSummary(std::stringstream& ss) const {
4  parMap::const_iterator it = parameters.begin();
5  for (; it != parameters.end(); ++it) {
6  ss << "parameter name = " << it->first << " value = " << it->second << std::endl;
7  }
8 }
9 
10 void ConfObject::printDebug(std::stringstream& ss) const { printSummary(ss); }
ConfObject::printDebug
void printDebug(std::stringstream &ss) const
Prints the full list of parameters.
Definition: ConfObject.cc:10
contentValuesCheck.ss
ss
Definition: contentValuesCheck.py:33
ConfObject.h
ConfObject::printSummary
void printSummary(std::stringstream &ss) const
Prints the full list of parameters.
Definition: ConfObject.cc:3
ConfObject::parameters
parMap parameters
Definition: ConfObject.h:65