------------------------------------------------------------------------------
| 49 | |
| 50 | //------------------------------------------------------------------------------ |
| 51 | void vtkXMLPUnstructuredGridReader::GetOutputUpdateExtent( |
| 52 | int& piece, int& numberOfPieces, int& ghostLevel) |
| 53 | { |
| 54 | vtkInformation* outInfo = this->GetCurrentOutputInformation(); |
| 55 | piece = outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER()); |
| 56 | numberOfPieces = outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES()); |
| 57 | ghostLevel = outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_GHOST_LEVELS()); |
| 58 | } |
| 59 | |
| 60 | //------------------------------------------------------------------------------ |
| 61 | void vtkXMLPUnstructuredGridReader::SetupOutputTotals() |
nothing calls this directly
no test coverage detected