------------------------------------------------------------------------------
| 427 | |
| 428 | //------------------------------------------------------------------------------ |
| 429 | void vtkAMRBaseReader::LoadPointData(int blockIdx, vtkUniformGrid* block) |
| 430 | { |
| 431 | // Sanity check! |
| 432 | assert("pre: AMR block should not be nullptr" && (block != nullptr)); |
| 433 | |
| 434 | for (int i = 0; i < this->GetNumberOfPointArrays(); ++i) |
| 435 | { |
| 436 | if (this->GetPointArrayStatus(this->GetPointArrayName(i))) |
| 437 | { |
| 438 | this->GetAMRPointData(blockIdx, block, this->GetPointArrayName(i)); |
| 439 | } |
| 440 | } // END for all point arrays |
| 441 | } |
| 442 | |
| 443 | //------------------------------------------------------------------------------ |
| 444 | void vtkAMRBaseReader::LoadCellData(int blockIdx, vtkUniformGrid* block) |
no test coverage detected