------------------------------------------------------------------------------
| 1126 | |
| 1127 | //------------------------------------------------------------------------------ |
| 1128 | bool vtkHDFWriter::AppendDataArrays(hid_t baseGroup, vtkDataObject* input, unsigned int partId) |
| 1129 | { |
| 1130 | if (!this->AppendDataSetAttributes(baseGroup, input, partId)) |
| 1131 | { |
| 1132 | vtkErrorMacro("Could not append dataset attributes to file"); |
| 1133 | return false; |
| 1134 | } |
| 1135 | if (!this->AppendFieldDataArrays(baseGroup, input, partId)) |
| 1136 | { |
| 1137 | vtkErrorMacro("Could not append field arrays to file"); |
| 1138 | return false; |
| 1139 | } |
| 1140 | return true; |
| 1141 | } |
| 1142 | |
| 1143 | //------------------------------------------------------------------------------ |
| 1144 | bool vtkHDFWriter::AppendDataSetAttributes( |
no test coverage detected