------------------------------------------------------------------------------
| 140 | |
| 141 | //------------------------------------------------------------------------------ |
| 142 | void vtkAVSucdReader::ReadFile(vtkUnstructuredGrid* output) |
| 143 | { |
| 144 | idMapping nodeMap, cellMap; |
| 145 | |
| 146 | this->ReadGeometry(output, nodeMap, cellMap); |
| 147 | |
| 148 | if (this->NumberOfNodeFields) |
| 149 | { |
| 150 | this->ReadNodeData(output, nodeMap); |
| 151 | } |
| 152 | |
| 153 | if (this->NumberOfCellFields) |
| 154 | { |
| 155 | this->ReadCellData(output, cellMap); |
| 156 | } |
| 157 | |
| 158 | delete this->FileStream; |
| 159 | this->FileStream = nullptr; |
| 160 | } |
| 161 | |
| 162 | //------------------------------------------------------------------------------ |
| 163 | int vtkAVSucdReader::RequestInformation(vtkInformation* vtkNotUsed(request), |
no test coverage detected