------------------------------------------------------------------------------
| 253 | |
| 254 | //------------------------------------------------------------------------------ |
| 255 | void vtkAMREnzoReader::ReadMetaData() |
| 256 | { |
| 257 | assert("pre: Internal Enzo Reader is nullptr" && (this->Internal != nullptr)); |
| 258 | |
| 259 | if (!this->IsReady) |
| 260 | { |
| 261 | return; |
| 262 | } |
| 263 | |
| 264 | this->Internal->ReadMetaData(); |
| 265 | } |
| 266 | |
| 267 | //------------------------------------------------------------------------------ |
| 268 | int vtkAMREnzoReader::GetBlockLevel(int blockIdx) |
no test coverage detected