------------------------------------------------------------------------------
| 300 | |
| 301 | //------------------------------------------------------------------------------ |
| 302 | int vtkXMLHyperTreeGridReader::ReadPrimaryElement(vtkXMLDataElement* ePrimary) |
| 303 | { |
| 304 | if (!this->Superclass::ReadPrimaryElement(ePrimary)) |
| 305 | { |
| 306 | return 0; |
| 307 | } |
| 308 | |
| 309 | // Minimum for parallel reader is to know the number of points over all pieces |
| 310 | if (!ePrimary->GetScalarAttribute("NumberOfVertices", this->NumberOfPoints)) |
| 311 | { |
| 312 | this->NumberOfPoints = 0; |
| 313 | } |
| 314 | |
| 315 | return 1; |
| 316 | } |
| 317 | |
| 318 | //------------------------------------------------------------------------------ |
| 319 | void vtkXMLHyperTreeGridReader::CopyOutputInformation(vtkInformation* outInfo, int port) |
nothing calls this directly
no test coverage detected