----------------------------------------------------------------------------
| 115 | |
| 116 | //---------------------------------------------------------------------------- |
| 117 | bool vtkConduitSource::GeneratePartitionedDataSet(vtkDataObject* output) |
| 118 | { |
| 119 | vtkNew<vtkPartitionedDataSet> pd_output; |
| 120 | if (!vtkConduitToDataObject::FillPartitionedDataSet(pd_output, this->Internals->Node)) |
| 121 | { |
| 122 | vtkLogF(ERROR, "Failed to read mesh from '%s'", this->Internals->Node.name().c_str()); |
| 123 | output->Initialize(); |
| 124 | return false; |
| 125 | } |
| 126 | |
| 127 | output->ShallowCopy(pd_output); |
| 128 | return true; |
| 129 | } |
| 130 | |
| 131 | //---------------------------------------------------------------------------- |
| 132 | bool vtkConduitSource::GeneratePartitionedDataSetCollection(vtkDataObject* output) |
no test coverage detected