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

Method GetGridRank

Filters/ParallelGeometry/vtkPStructuredGridConnectivity.h:527–533  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

525
526//------------------------------------------------------------------------------
527inline int vtkPStructuredGridConnectivity::GetGridRank(int gridID)
528{
529 assert("pre: Instance has not been initialized!" && this->Initialized);
530 assert("pre: gridID out-of-bounds!" &&
531 (gridID >= 0 && gridID < static_cast<int>(this->NumberOfGrids)));
532 return (this->GridRanks[gridID]);
533}
534VTK_ABI_NAMESPACE_END
535#endif /* vtkPStructuredGridConnectivity_h */

Callers 2

PostReceivesMethod · 0.95
PostSendsMethod · 0.95

Calls 1

assertFunction · 0.50

Tested by

no test coverage detected