------------------------------------------------------------------------------
| 791 | |
| 792 | //------------------------------------------------------------------------------ |
| 793 | int vtkPSLACReader::RestoreMeshCache(vtkMultiBlockDataSet* surfaceOutput, |
| 794 | vtkMultiBlockDataSet* volumeOutput, vtkMultiBlockDataSet* compositeOutput) |
| 795 | { |
| 796 | if (!this->Superclass::RestoreMeshCache(surfaceOutput, volumeOutput, compositeOutput)) |
| 797 | return 0; |
| 798 | |
| 799 | // Record the global ids in the point data. |
| 800 | vtkPointData* pd = |
| 801 | vtkPointData::SafeDownCast(compositeOutput->GetInformation()->Get(vtkSLACReader::POINT_DATA())); |
| 802 | pd->SetGlobalIds(this->PInternal->LocalToGlobalIds); |
| 803 | pd->SetPedigreeIds(this->PInternal->LocalToGlobalIds); |
| 804 | |
| 805 | return 1; |
| 806 | } |
| 807 | |
| 808 | //------------------------------------------------------------------------------ |
| 809 | vtkSmartPointer<vtkDataArray> vtkPSLACReader::ReadPointDataArray(int ncFD, int varId) |
nothing calls this directly
no test coverage detected