| 110 | }; |
| 111 | |
| 112 | bool vtkNetCDFCAMReader::Internal::nc_err(int nc_ret, bool msg_on_err) const |
| 113 | { |
| 114 | if (nc_ret == NC_NOERR) |
| 115 | { |
| 116 | return false; |
| 117 | } |
| 118 | |
| 119 | if (msg_on_err) |
| 120 | { |
| 121 | vtkErrorWithObjectMacro(reader, << "NetCDF error: " << nc_strerror(nc_ret)); |
| 122 | } |
| 123 | return true; |
| 124 | } |
| 125 | |
| 126 | std::string vtkNetCDFCAMReader::Internal::GetNameDimension(int nc_file, int nc_var) const |
| 127 | { |
no test coverage detected