------------------------------------------------------------------------------
| 442 | |
| 443 | //------------------------------------------------------------------------------ |
| 444 | void vtkAMRBaseReader::LoadCellData(int blockIdx, vtkUniformGrid* block) |
| 445 | { |
| 446 | // Sanity check! |
| 447 | assert("pre: AMR block should not be nullptr" && (block != nullptr)); |
| 448 | |
| 449 | for (int i = 0; i < this->GetNumberOfCellArrays(); ++i) |
| 450 | { |
| 451 | if (this->GetCellArrayStatus(this->GetCellArrayName(i))) |
| 452 | { |
| 453 | this->GetAMRData(blockIdx, block, this->GetCellArrayName(i)); |
| 454 | } |
| 455 | } // END for all cell arrays |
| 456 | } |
| 457 | |
| 458 | //------------------------------------------------------------------------------ |
| 459 | void vtkAMRBaseReader::LoadRequestedBlocks(vtkOverlappingAMR* output) |
no test coverage detected