MCPcopy Create free account
hub / github.com/Kitware/VTK / LoadPointData

Method LoadPointData

IO/AMR/vtkAMRBaseReader.cxx:429–441  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

427
428//------------------------------------------------------------------------------
429void 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//------------------------------------------------------------------------------
444void vtkAMRBaseReader::LoadCellData(int blockIdx, vtkUniformGrid* block)

Callers 2

LoadRequestedBlocksMethod · 0.95
AssignAndLoadBlocksMethod · 0.95

Calls 5

GetPointArrayStatusMethod · 0.95
GetPointArrayNameMethod · 0.95
GetAMRPointDataMethod · 0.95
assertFunction · 0.50

Tested by

no test coverage detected