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

Method ReadFile

IO/Geometry/vtkAVSucdReader.cxx:142–160  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

140
141//------------------------------------------------------------------------------
142void 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//------------------------------------------------------------------------------
163int vtkAVSucdReader::RequestInformation(vtkInformation* vtkNotUsed(request),

Callers 1

RequestDataMethod · 0.95

Calls 3

ReadGeometryMethod · 0.95
ReadNodeDataMethod · 0.95
ReadCellDataMethod · 0.95

Tested by

no test coverage detected