The timeName for the given index, with special handling for "constant" time directory
| 918 | |
| 919 | // The timeName for the given index, with special handling for "constant" time directory |
| 920 | std::string TimePath(int timeIndex) const |
| 921 | { |
| 922 | if (timeIndex < 0) |
| 923 | { |
| 924 | return this->CasePath + "constant"; |
| 925 | } |
| 926 | return this->CasePath + this->TimeNames->GetValue(timeIndex); |
| 927 | } |
| 928 | std::string CurrentTimePath() const { return this->TimePath(this->TimeStep); } |
| 929 | |
| 930 | // TimePath + region |
no test coverage detected