| 225 | } |
| 226 | |
| 227 | bool vtkMPASReader::Internal::nc_err(int nc_ret, bool msg_on_err) const |
| 228 | { |
| 229 | if (nc_ret == NC_NOERR) |
| 230 | { |
| 231 | return false; |
| 232 | } |
| 233 | |
| 234 | if (msg_on_err) |
| 235 | { |
| 236 | vtkErrorWithObjectMacro(reader, << "NetCDF error: " << nc_strerror(nc_ret)); |
| 237 | } |
| 238 | return true; |
| 239 | } |
| 240 | |
| 241 | std::string vtkMPASReader::Internal::dimensionedArrayName(int nc_var) const |
| 242 | { |
no test coverage detected