| 329 | } |
| 330 | |
| 331 | QStringList TOPPASVertex::getFileNames(int param_index, int round) const |
| 332 | { |
| 333 | if ((Size)round >= output_files_.size()) |
| 334 | { |
| 335 | throw Exception::IndexOverflow(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION, round, output_files_.size()); |
| 336 | } |
| 337 | RoundPackage rp = output_files_[round]; |
| 338 | if (rp.find(param_index) == rp.end()) |
| 339 | { |
| 340 | throw Exception::IndexOverflow(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION, param_index, rp.size()); // index could be larger (its a map, but nevertheless) |
| 341 | } |
| 342 | //String s = String(rp[param_index].filenames.join("\" \"")); |
| 343 | return rp[param_index].filenames.get(); |
| 344 | } |
| 345 | |
| 346 | QStringList TOPPASVertex::getFileNames() const |
| 347 | { |
no test coverage detected