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

Method InitializeBlocks

Parallel/DIY/vtkDIYGhostUtilities.cxx:5951–5964  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

5949
5950//----------------------------------------------------------------------------
5951void vtkDIYGhostUtilities::InitializeBlocks(
5952 diy::Master& master, std::vector<vtkDataSet*>& inputs, bool syncCell, bool syncPoint)
5953{
5954 if (syncCell)
5955 {
5956 InitializeBlocks(master, inputs, vtkDataSet::AttributeTypes::CELL,
5957 vtkDataSetAttributes::CellGhostTypes::DUPLICATECELL);
5958 }
5959 if (syncPoint)
5960 {
5961 InitializeBlocks(master, inputs, vtkDataSet::AttributeTypes::POINT,
5962 vtkDataSetAttributes::PointGhostTypes::DUPLICATEPOINT);
5963 }
5964}
5965
5966//----------------------------------------------------------------------------
5967void vtkDIYGhostUtilities::InitializeBlocks(

Callers

nothing calls this directly

Calls 14

GetGlobalIdsMethod · 0.80
GetProcessIdsMethod · 0.80
sizeMethod · 0.45
clearMethod · 0.45
GetAttributesMethod · 0.45
GetGhostArrayMethod · 0.45
GetNumberOfElementsMethod · 0.45
InsertNextValueMethod · 0.45
GetPointsMethod · 0.45

Tested by

no test coverage detected