------------------------------------------------------------------------------
| 124 | |
| 125 | //------------------------------------------------------------------------------ |
| 126 | int vtkAMRFlashReader::GetNumberOfLevels() |
| 127 | { |
| 128 | assert("pre: Internal Flash Reader is nullptr" && (this->Internal != nullptr)); |
| 129 | if (!this->IsReady) |
| 130 | { |
| 131 | return 0; |
| 132 | } |
| 133 | |
| 134 | this->Internal->ReadMetaData(); |
| 135 | return (this->Internal->NumberOfLevels); |
| 136 | } |
| 137 | |
| 138 | void vtkAMRFlashReader::ComputeStats( |
| 139 | vtkFlashReaderInternal* internal, std::vector<unsigned int>& numBlocks, double min[3]) |
nothing calls this directly
no test coverage detected