| 280 | bool Mesh::isDataSourceGridFile() const { return source != nullptr and source->is_file; } |
| 281 | |
| 282 | bool Mesh::sourceHasVar(const std::string& name) { |
| 283 | TRACE("Mesh::sourceHasVar({:s})", name); |
| 284 | if (source == nullptr) { |
| 285 | return false; |
| 286 | } |
| 287 | return source->hasVar(name); |
| 288 | } |
| 289 | |
| 290 | /// Wrapper for GridDataSource::hasXBoundaryGuards |
| 291 | bool Mesh::sourceHasXBoundaryGuards() { return source->hasXBoundaryGuards(this); } |
no test coverage detected