| 1556 | } |
| 1557 | |
| 1558 | int vtkMultiBlockPLOT3DReader::ReadArrays( |
| 1559 | int piece, int npieces, int nghosts, int timestep, vtkDataObject* output) |
| 1560 | { |
| 1561 | if (this->GetNumberOfFileNames() > 0) |
| 1562 | { |
| 1563 | this->CurrentFileIndex = timestep; |
| 1564 | if (this->vtkParallelReader::ReadArrays(piece, npieces, nghosts, timestep, output)) |
| 1565 | { |
| 1566 | this->CurrentFileIndex = timestep; |
| 1567 | } |
| 1568 | else |
| 1569 | { |
| 1570 | return 0; |
| 1571 | } |
| 1572 | } |
| 1573 | else if (this->FunctionFileName) |
| 1574 | { |
| 1575 | this->ReadArrays(std::string(), piece, npieces, nghosts, output); |
| 1576 | } |
| 1577 | // If no q filename is set, do nothing. |
| 1578 | return 1; |
| 1579 | } |
| 1580 | |
| 1581 | int vtkMultiBlockPLOT3DReader::ReadMesh( |
| 1582 | const std::string&, int /*piece*/, int npieces, int nghosts, vtkDataObject* output) |
nothing calls this directly
no test coverage detected