| 28 | } |
| 29 | |
| 30 | std::string LevelFullPath (int level, |
| 31 | const std::string &plotfilename, |
| 32 | const std::string &levelPrefix) |
| 33 | { |
| 34 | std::string r(plotfilename); |
| 35 | if ( ! r.empty() && r.back() != '/') { |
| 36 | r += '/'; |
| 37 | } |
| 38 | r += LevelPath(level, levelPrefix); // e.g., plt00005/Level_5 |
| 39 | return r; |
| 40 | } |
| 41 | |
| 42 | std::string MultiFabFileFullPrefix (int level, |
| 43 | const std::string& plotfilename, |
no test coverage detected