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); }
void printSummary(std::stringstream &ss) const
Prints the full list of parameters.
Definition: ConfObject.cc:3
void printDebug(std::stringstream &ss) const
Prints the full list of parameters.
Definition: ConfObject.cc:10
parMap parameters
Definition: ConfObject.h:65