generate pretty output strings */
| 92 | |
| 93 | /** generate pretty output strings */ |
| 94 | std::string getValueString() const |
| 95 | { |
| 96 | std::string Out; |
| 97 | |
| 98 | for(const auto &Element : _Config->getConfig(_Type)) |
| 99 | { |
| 100 | for(Index nElement = 0; nElement < _Data.at(Element.first).size(); nElement++) |
| 101 | { |
| 102 | std::ostringstream Stream; |
| 103 | Stream.precision(8); |
| 104 | Stream << std::scientific << _Data.at(Element.first).operator[](nElement); |
| 105 | |
| 106 | Out.append(Stream.str()); |
| 107 | Out.append(" "); |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | return Out; |
| 112 | } |
| 113 | |
| 114 | std::string getNameValueString() const |
| 115 | { |