MCPcopy Create free account
hub / github.com/Kitware/VTK / AppendDataArrays

Method AppendDataArrays

IO/HDF/vtkHDFWriter.cxx:1128–1141  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

1126
1127//------------------------------------------------------------------------------
1128bool 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//------------------------------------------------------------------------------
1144bool vtkHDFWriter::AppendDataSetAttributes(

Callers 1

WriteDatasetToFileMethod · 0.95

Calls 2

AppendFieldDataArraysMethod · 0.95

Tested by

no test coverage detected