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

Method UpdatePiece

Common/ExecutionModel/vtkAlgorithm.cxx:1691–1704  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1689
1690//------------------------------------------------------------------------------
1691int vtkAlgorithm::UpdatePiece(int piece, int numPieces, int ghostLevels, const int extents[6])
1692{
1693 typedef vtkStreamingDemandDrivenPipeline vtkSDDP;
1694
1695 vtkNew<vtkInformation> reqs;
1696 reqs->Set(vtkSDDP::UPDATE_PIECE_NUMBER(), piece);
1697 reqs->Set(vtkSDDP::UPDATE_NUMBER_OF_PIECES(), numPieces);
1698 reqs->Set(vtkSDDP::UPDATE_NUMBER_OF_GHOST_LEVELS(), ghostLevels);
1699 if (extents)
1700 {
1701 reqs->Set(vtkSDDP::UPDATE_EXTENT(), extents, 6);
1702 }
1703 return this->Update(reqs);
1704}
1705
1706//------------------------------------------------------------------------------
1707int vtkAlgorithm::UpdateExtent(const int extents[6])

Callers 15

TestOMETIFFReaderFunction · 0.80
TestCompressedTIFFReaderFunction · 0.80
ReadPieceDataMethod · 0.80
ReadPieceDataMethod · 0.80
ReadPieceDataMethod · 0.80
GetActorFunction · 0.80
RequestDataMethod · 0.80
WriteMethod · 0.80
TestAMReXParticlesReaderFunction · 0.80
TestDistributedObjectFunction · 0.80
TestDistributedTemporalFunction · 0.80

Calls 2

UpdateMethod · 0.95
SetMethod · 0.45