| 16 | namespace amrex { |
| 17 | |
| 18 | std::string LevelPath (int level, const std::string &levelPrefix) |
| 19 | { |
| 20 | return Concatenate(levelPrefix, level, 1); // e.g., Level_5 |
| 21 | } |
| 22 | |
| 23 | std::string MultiFabHeaderPath (int level, |
| 24 | const std::string &levelPrefix, |
no test coverage detected