| 81 | } |
| 82 | |
| 83 | int vtkCompositeCellGridReader::ReadMetaData(vtkInformation* metadata) |
| 84 | { |
| 85 | vtkLogScopeF(TRACE, "ReadMetaData"); |
| 86 | |
| 87 | // Read block and array info if needed. |
| 88 | this->UpdateMetadata(); |
| 89 | |
| 90 | metadata->Set(vtkAlgorithm::CAN_HANDLE_PIECE_REQUEST(), 1); |
| 91 | return 1; |
| 92 | } |
| 93 | |
| 94 | int vtkCompositeCellGridReader::ReadMesh( |
| 95 | int piece, int npieces, int nghosts, int timestep, vtkDataObject* output) |
nothing calls this directly
no test coverage detected