CMS 3D CMS Logo

Enumerations | Functions

edm::writeParameterValue Namespace Reference

Enumerations

enum  ValueFormat { CFI, DOC }

Functions

void formatDouble (double value, std::string &result)
bool hasNestedContent (std::vector< unsigned long long > const &value)
bool hasNestedContent (double const &value)
bool hasNestedContent (std::vector< double > const &value)
bool hasNestedContent (bool const &value)
bool hasNestedContent (std::string const &value)
bool hasNestedContent (std::vector< std::string > const &value)
bool hasNestedContent (EventID const &value)
bool hasNestedContent (std::vector< EventID > const &value)
bool hasNestedContent (LuminosityBlockID const &value)
bool hasNestedContent (std::vector< LuminosityBlockID > const &value)
bool hasNestedContent (LuminosityBlockRange const &value)
bool hasNestedContent (std::vector< LuminosityBlockRange > const &value)
bool hasNestedContent (EventRange const &value)
bool hasNestedContent (std::vector< EventRange > const &value)
bool hasNestedContent (InputTag const &value)
bool hasNestedContent (std::vector< InputTag > const &value)
bool hasNestedContent (int const &value)
bool hasNestedContent (std::vector< int > const &value)
bool hasNestedContent (unsigned const &value)
bool hasNestedContent (FileInPath const &value)
bool hasNestedContent (std::vector< unsigned > const &value)
bool hasNestedContent (long long const &value)
bool hasNestedContent (std::vector< long long > const &value)
bool hasNestedContent (unsigned long long const &value)
template<typename T >
void writeSingleValue (std::ostream &os, T const &value, ValueFormat format)
template<>
void writeSingleValue< bool > (std::ostream &os, bool const &value, ValueFormat format)
template<>
void writeSingleValue< double > (std::ostream &os, double const &value, ValueFormat format)
template<>
void writeSingleValue< EventID > (std::ostream &os, EventID const &value, ValueFormat format)
template<>
void writeSingleValue< EventRange > (std::ostream &os, EventRange const &value, ValueFormat format)
template<>
void writeSingleValue< FileInPath > (std::ostream &os, FileInPath const &value, ValueFormat format)
template<>
void writeSingleValue< InputTag > (std::ostream &os, InputTag const &value, ValueFormat format)
template<>
void writeSingleValue< LuminosityBlockID > (std::ostream &os, LuminosityBlockID const &value, ValueFormat format)
template<>
void writeSingleValue< LuminosityBlockRange > (std::ostream &os, LuminosityBlockRange const &value, ValueFormat format)
template<>
void writeSingleValue< std::string > (std::ostream &os, std::string const &value, ValueFormat format)
template<typename T >
void writeValue (std::ostream &os, T const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, std::vector< InputTag > const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, std::vector< EventID > const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, std::vector< unsigned > const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, LuminosityBlockID const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, unsigned long long const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, std::vector< EventRange > const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, std::vector< unsigned long long > const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, std::vector< LuminosityBlockID > const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, int const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, EventID const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, std::vector< std::string > const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, LuminosityBlockRange const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, double const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, std::vector< LuminosityBlockRange > const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, std::vector< int > const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, long long const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, bool const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, InputTag const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, std::vector< double > const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, std::string const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, EventRange const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, FileInPath const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, std::vector< long long > const &value_, ValueFormat format)
void writeValue (std::ostream &os, int indentation, unsigned const &value_, ValueFormat format)
template<typename T >
void writeValueInVector (std::ostream &os, T const &value, ValueFormat format)
template<>
void writeValueInVector< EventID > (std::ostream &os, EventID const &value, ValueFormat format)
template<>
void writeValueInVector< InputTag > (std::ostream &os, InputTag const &value, ValueFormat format)
template<>
void writeValueInVector< LuminosityBlockID > (std::ostream &os, LuminosityBlockID const &value, ValueFormat format)
template<typename T >
void writeValueInVectorWithSpace (T const &value, std::ostream &os, int indentation, bool &startWithComma, ValueFormat format, int &i)
template<typename T >
void writeVector (std::ostream &os, int indentation, std::vector< T > const &value_, ValueFormat format)

Enumeration Type Documentation

Enumerator:
CFI 
DOC 

Definition at line 44 of file ParameterDescription.h.

{ CFI, DOC };

Function Documentation

void edm::writeParameterValue::formatDouble ( double  value,
std::string &  result 
)

Definition at line 481 of file ParameterDescription.cc.

References asciidump::s, and relativeConstraints::value.

Referenced by writeSingleValue< double >().

                                                       {
      std::stringstream s;
      s << std::setprecision(17) << value;
      result = s.str();

      if (result.size() > 15 && std::string::npos != result.find(".")) {
        std::stringstream s;
        s << std::setprecision(15) << value;
        std::string resultLessPrecision = s.str();

        if (resultLessPrecision.size() < result.size() - 2) {
          double test = std::strtod(resultLessPrecision.c_str(), 0);
          if (test == value) {
            result = resultLessPrecision;
          }
        }
      }
    }
bool edm::writeParameterValue::hasNestedContent ( std::vector< unsigned long long > const &  value)

Definition at line 778 of file ParameterDescription.cc.

{ return value.size() > 5U; }
bool edm::writeParameterValue::hasNestedContent ( double const &  value)

Definition at line 779 of file ParameterDescription.cc.

{ return false; }
bool edm::writeParameterValue::hasNestedContent ( std::vector< double > const &  value)

Definition at line 780 of file ParameterDescription.cc.

{ return value.size() > 5U; }
bool edm::writeParameterValue::hasNestedContent ( bool const &  value)

Definition at line 781 of file ParameterDescription.cc.

{ return false; }
bool edm::writeParameterValue::hasNestedContent ( std::string const &  value)

Definition at line 782 of file ParameterDescription.cc.

{ return false; }
bool edm::writeParameterValue::hasNestedContent ( std::vector< std::string > const &  value)

Definition at line 783 of file ParameterDescription.cc.

{ return value.size() > 5U; }
bool edm::writeParameterValue::hasNestedContent ( EventID const &  value)

Definition at line 784 of file ParameterDescription.cc.

{ return false; }
bool edm::writeParameterValue::hasNestedContent ( std::vector< EventID > const &  value)

Definition at line 785 of file ParameterDescription.cc.

{ return value.size() > 5U; }
bool edm::writeParameterValue::hasNestedContent ( LuminosityBlockID const &  value)

Definition at line 786 of file ParameterDescription.cc.

{ return false; }
bool edm::writeParameterValue::hasNestedContent ( std::vector< LuminosityBlockID > const &  value)

Definition at line 787 of file ParameterDescription.cc.

{ return value.size() > 5U; }
bool edm::writeParameterValue::hasNestedContent ( LuminosityBlockRange const &  value)

Definition at line 788 of file ParameterDescription.cc.

{ return false; }
bool edm::writeParameterValue::hasNestedContent ( std::vector< LuminosityBlockRange > const &  value)

Definition at line 789 of file ParameterDescription.cc.

{ return value.size() > 5U; }
bool edm::writeParameterValue::hasNestedContent ( EventRange const &  value)

Definition at line 790 of file ParameterDescription.cc.

{ return false; }
bool edm::writeParameterValue::hasNestedContent ( std::vector< EventRange > const &  value)

Definition at line 791 of file ParameterDescription.cc.

{ return value.size() > 5U; }
bool edm::writeParameterValue::hasNestedContent ( InputTag const &  value)

Definition at line 792 of file ParameterDescription.cc.

{ return false; }
bool edm::writeParameterValue::hasNestedContent ( std::vector< InputTag > const &  value)

Definition at line 793 of file ParameterDescription.cc.

{ return value.size() > 5U; }
bool edm::writeParameterValue::hasNestedContent ( int const &  value)

Definition at line 771 of file ParameterDescription.cc.

{ return false; }
bool edm::writeParameterValue::hasNestedContent ( std::vector< int > const &  value)

Definition at line 772 of file ParameterDescription.cc.

{ return value.size() > 5U; }
bool edm::writeParameterValue::hasNestedContent ( unsigned const &  value)

Definition at line 773 of file ParameterDescription.cc.

{ return false; }
bool edm::writeParameterValue::hasNestedContent ( FileInPath const &  value)

Definition at line 794 of file ParameterDescription.cc.

{ return false; }
bool edm::writeParameterValue::hasNestedContent ( std::vector< unsigned > const &  value)

Definition at line 774 of file ParameterDescription.cc.

{ return value.size() > 5U; }
bool edm::writeParameterValue::hasNestedContent ( long long const &  value)

Definition at line 775 of file ParameterDescription.cc.

{ return false; }
bool edm::writeParameterValue::hasNestedContent ( std::vector< long long > const &  value)

Definition at line 776 of file ParameterDescription.cc.

{ return value.size() > 5U; }
bool edm::writeParameterValue::hasNestedContent ( unsigned long long const &  value)

Definition at line 777 of file ParameterDescription.cc.

{ return false; }
template<typename T >
void edm::writeParameterValue::writeSingleValue ( std::ostream &  os,
T const &  value,
ValueFormat  format 
)

Definition at line 458 of file ParameterDescription.cc.

References relativeConstraints::value.

                                                                              {
      os << value;
    }
template<>
void edm::writeParameterValue::writeSingleValue< bool > ( std::ostream &  os,
bool const &  value,
ValueFormat  format 
)

Definition at line 508 of file ParameterDescription.cc.

References relativeConstraints::value.

                                                                                       {
      value ? os << "True" : os << "False";
    }
template<>
void edm::writeParameterValue::writeSingleValue< double > ( std::ostream &  os,
double const &  value,
ValueFormat  format 
)

Definition at line 501 of file ParameterDescription.cc.

References formatDouble(), and relativeConstraints::value.

                                                                                           {
      std::string sValue;
      formatDouble(value, sValue);
      os << sValue;
    }
template<>
void edm::writeParameterValue::writeSingleValue< EventID > ( std::ostream &  os,
EventID const &  value,
ValueFormat  format 
)

Definition at line 518 of file ParameterDescription.cc.

References CFI, and relativeConstraints::value.

                                                                                             {
      if (format == CFI) {
        os << value.run() << ", " << value.luminosityBlock() << ", " << value.event();
      } else {
        if (value.luminosityBlock() == 0U) {
          os << value.run() << ":" << value.event();
        } else {
          os << value.run() << ":" << value.luminosityBlock() << ":" << value.event();
        }
      }
    }
template<>
void edm::writeParameterValue::writeSingleValue< EventRange > ( std::ostream &  os,
EventRange const &  value,
ValueFormat  format 
)

Definition at line 537 of file ParameterDescription.cc.

References CFI, and relativeConstraints::value.

                                                                                                   {
      if (value.startLumi() == 0U) {
        if (format == CFI) os << "'" << value.startRun() << ":" << value.startEvent() << "-"
                                     << value.endRun() << ":" << value.endEvent() << "'";
        else os << value.startRun() << ":" << value.startEvent() << "-"
                << value.endRun() << ":" << value.endEvent();
      } else {
        if (format == CFI) os << "'" << value.startRun() << ":" << value.startLumi() << ":" << value.startEvent() << "-"
                                     << value.endRun() << ":" << value.endLumi() << ":" << value.endEvent() << "'";
        else os << value.startRun() << ":" << value.startLumi() << ":" << value.startEvent() << "-"
                << value.endRun() << ":" << value.endLumi() << ":" << value.endEvent();
      }
    }
template<>
void edm::writeParameterValue::writeSingleValue< FileInPath > ( std::ostream &  os,
FileInPath const &  value,
ValueFormat  format 
)

Definition at line 583 of file ParameterDescription.cc.

References relativeConstraints::value.

                                                                                                   {
      os << "'" << value.relativePath() << "'";
    }
template<>
void edm::writeParameterValue::writeSingleValue< InputTag > ( std::ostream &  os,
InputTag const &  value,
ValueFormat  format 
)

Definition at line 560 of file ParameterDescription.cc.

References CFI, and relativeConstraints::value.

                                                                                               {
      if (format == CFI) {
        os << "'" << value.label() << "'";
        if (!value.instance().empty() || !value.process().empty()) {
          os << ", '" << value.instance() << "'";
        }
        if (!value.process().empty()) {
          os << ", '" << value.process() << "'";
        }
      }
      else {
        os << "'" << value.label();
        if (!value.instance().empty() || !value.process().empty()) {
          os << ":" << value.instance();
        }
        if (!value.process().empty()) {
          os << ":" << value.process();
        }
        os << "'";
      }
    }
template<>
void edm::writeParameterValue::writeSingleValue< LuminosityBlockID > ( std::ostream &  os,
LuminosityBlockID const &  value,
ValueFormat  format 
)

Definition at line 531 of file ParameterDescription.cc.

References CFI, and relativeConstraints::value.

                                                                                                                 {
      if (format == CFI) os << value.run() << ", " << value.luminosityBlock();
      else os << value.run() << ":" << value.luminosityBlock();
    }
template<>
void edm::writeParameterValue::writeSingleValue< LuminosityBlockRange > ( std::ostream &  os,
LuminosityBlockRange const &  value,
ValueFormat  format 
)

Definition at line 552 of file ParameterDescription.cc.

References CFI, and relativeConstraints::value.

                                                                                                                       {
      if (format == CFI) os << "'" << value.startRun() << ":" << value.startLumi() << "-"
                            << value.endRun() << ":" << value.endLumi() << "'";
      else os << value.startRun() << ":" << value.startLumi() << "-"
              << value.endRun() << ":" << value.endLumi();
    }
template<>
void edm::writeParameterValue::writeSingleValue< std::string > ( std::ostream &  os,
std::string const &  value,
ValueFormat  format 
)

Definition at line 513 of file ParameterDescription.cc.

References relativeConstraints::value.

                                                                                                 {
      os << "'" << value << "'";
    }
template<typename T >
void edm::writeParameterValue::writeValue ( std::ostream &  os,
T const &  value_,
ValueFormat  format 
)

Definition at line 588 of file ParameterDescription.cc.

References createTree::ff, and diffTreeTool::format().

                                                                         {
      std::ios_base::fmtflags ff = os.flags(std::ios_base::dec);
      os.width(0);
      writeSingleValue<T>(os, value_, format);
      os.flags(ff);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
std::vector< InputTag > const &  value_,
ValueFormat  format 
)

Definition at line 763 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                                            {
      writeVector<InputTag>(os, indentation, value_, format);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
std::vector< EventID > const &  value_,
ValueFormat  format 
)

Definition at line 731 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                                           {
      writeVector<EventID>(os, indentation, value_, format);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
std::vector< unsigned > const &  value_,
ValueFormat  format 
)

Definition at line 687 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                                            {
      writeVector<unsigned>(os, indentation, value_, format);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
LuminosityBlockID const &  value_,
ValueFormat  format 
)

Definition at line 735 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                                          {
      writeValue<LuminosityBlockID>(os, value_, format);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
unsigned long long const &  value_,
ValueFormat  format 
)

Definition at line 699 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                                           {
      writeValue<unsigned long long>(os, value_, format);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
std::vector< EventRange > const &  value_,
ValueFormat  format 
)

Definition at line 755 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                                              {
      writeVector<EventRange>(os, indentation, value_, format);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
std::vector< unsigned long long > const &  value_,
ValueFormat  format 
)

Definition at line 703 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                                                      {
      writeVector<unsigned long long>(os, indentation, value_, format);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
std::vector< LuminosityBlockID > const &  value_,
ValueFormat  format 
)

Definition at line 739 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                                                     {
      writeVector<LuminosityBlockID>(os, indentation, value_, format);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
int const &  value_,
ValueFormat  format 
)
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
EventID const &  value_,
ValueFormat  format 
)

Definition at line 727 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                                {
      writeValue<EventID>(os, value_, format);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
std::vector< std::string > const &  value_,
ValueFormat  format 
)

Definition at line 723 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                                             {
      writeVector<std::string>(os, indentation, value_, format);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
LuminosityBlockRange const &  value_,
ValueFormat  format 
)

Definition at line 743 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                                             {
      writeValue<LuminosityBlockRange>(os, value_, format);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
double const &  value_,
ValueFormat  format 
)

Definition at line 707 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                               {
      writeValue<double>(os, value_, format);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
std::vector< LuminosityBlockRange > const &  value_,
ValueFormat  format 
)

Definition at line 747 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                                                        {
      writeVector<LuminosityBlockRange>(os, indentation, value_, format);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
std::vector< int > const &  value_,
ValueFormat  format 
)

Definition at line 679 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                                       {
      writeVector<int>(os, indentation, value_, format);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
long long const &  value_,
ValueFormat  format 
)

Definition at line 691 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                                  {
      writeValue<long long>(os, value_, format);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
bool const &  value_,
ValueFormat  format 
)

Definition at line 715 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                             {
      writeValue<bool>(os, value_, format);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
InputTag const &  value_,
ValueFormat  format 
)

Definition at line 759 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                                 {
      writeValue<InputTag>(os, value_, format);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
std::vector< double > const &  value_,
ValueFormat  format 
)

Definition at line 711 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                                          {
      writeVector<double>(os, indentation, value_, format);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
std::string const &  value_,
ValueFormat  format 
)

Definition at line 719 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                                  {
      writeValue<std::string>(os, value_, format);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
EventRange const &  value_,
ValueFormat  format 
)

Definition at line 751 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                                   {
      writeValue<EventRange>(os, value_, format);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
FileInPath const &  value_,
ValueFormat  format 
)

Definition at line 767 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                                   {
      writeValue<FileInPath>(os, value_, format);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
std::vector< long long > const &  value_,
ValueFormat  format 
)

Definition at line 695 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                                             {
      writeVector<long long>(os, indentation, value_, format);
    }
void edm::writeParameterValue::writeValue ( std::ostream &  os,
int  indentation,
unsigned const &  value_,
ValueFormat  format 
)

Definition at line 683 of file ParameterDescription.cc.

References diffTreeTool::format().

                                                                                                 {
      writeValue<unsigned>(os, value_, format);
    }
template<typename T >
void edm::writeParameterValue::writeValueInVector ( std::ostream &  os,
T const &  value,
ValueFormat  format 
)

Definition at line 596 of file ParameterDescription.cc.

References diffTreeTool::format(), and relativeConstraints::value.

                                                                                {
      writeSingleValue<T>(os, value, format);
    }
template<>
void edm::writeParameterValue::writeValueInVector< EventID > ( std::ostream &  os,
EventID const &  value,
ValueFormat  format 
)

Definition at line 603 of file ParameterDescription.cc.

References CFI, and relativeConstraints::value.

                                                                                               {
      if (value.luminosityBlock() == 0U) {
        if (format == CFI) os << "'" << value.run() << ":" << value.event() << "'";
        else os << value.run() << ":" << value.event();
      } else {
        if (format == CFI) os << "'" << value.run() << ":" << value.luminosityBlock() << ":" << value.event() << "'";
        else os << value.run() << ":" << value.luminosityBlock() << ":" << value.event();
      }
    }
template<>
void edm::writeParameterValue::writeValueInVector< InputTag > ( std::ostream &  os,
InputTag const &  value,
ValueFormat  format 
)

Definition at line 620 of file ParameterDescription.cc.

References relativeConstraints::value.

                                                                                                 {
      os << "'" << value.label();
      if (!value.instance().empty() || !value.process().empty()) {
        os << ":" << value.instance();
      }
      if (!value.process().empty()) {
        os << ":" << value.process();
      }
      os << "'";
    }
template<>
void edm::writeParameterValue::writeValueInVector< LuminosityBlockID > ( std::ostream &  os,
LuminosityBlockID const &  value,
ValueFormat  format 
)

Definition at line 614 of file ParameterDescription.cc.

References CFI, and relativeConstraints::value.

                                                                                                                   {
      if (format == CFI) os << "'" << value.run() << ":" << value.luminosityBlock() << "'";
      else os << value.run() << ":" << value.luminosityBlock();
    }
template<typename T >
void edm::writeParameterValue::writeValueInVectorWithSpace ( T const &  value,
std::ostream &  os,
int  indentation,
bool &  startWithComma,
ValueFormat  format,
int &  i 
)

Definition at line 632 of file ParameterDescription.cc.

References CFI, DOC, diffTreeTool::format(), i, and relativeConstraints::value.

                                             {
      if (startWithComma && format == CFI) os << ",";
      startWithComma = true;
      os << "\n" << std::setw(indentation) << "";
      if (format == DOC) os << "[" << i << "]: ";
      writeValueInVector<T>(os, value, format);
      ++i;
    }
template<typename T >
void edm::writeParameterValue::writeVector ( std::ostream &  os,
int  indentation,
std::vector< T > const &  value_,
ValueFormat  format 
)

Definition at line 647 of file ParameterDescription.cc.

References CFI, DOC, createTree::ff, edm::for_all(), diffTreeTool::format(), and i.

                                                                                                      {
      std::ios_base::fmtflags ff = os.flags(std::ios_base::dec);
      char oldFill = os.fill();
      os.width(0);
      if (value_.size() == 0U && format == DOC) {
        os << "empty";
      }
      else if (value_.size() == 1U && format == CFI) {
        writeValueInVector<T>(os, value_[0], format);
      }
      else if (value_.size() >= 1U) {
        if (format == DOC) os << "(vector size = " << value_.size() << ")";
        os.fill(' ');
        bool startWithComma = false;
        int i = 0;
        for_all(value_, boost::bind(&writeValueInVectorWithSpace<T>,
                                    _1,
                                    boost::ref(os),
                                    indentation + 2,
                                    boost::ref(startWithComma),
                                    format,
                                    boost::ref(i)));
        if (format == CFI) os << "\n" << std::setw(indentation) << "";
      }
      os.flags(ff);
      os.fill(oldFill);
    }