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

Method CloseMemberGroups

IO/HDF/vtkHDFReaderImplementation.cxx:214–229  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

212
213//------------------------------------------------------------------------------
214void vtkHDFReader::Implementation::CloseMemberGroups()
215{
216 if (this->VTKGroup >= 0)
217 {
218 H5Gclose(this->VTKGroup);
219 this->VTKGroup = -1;
220 }
221 for (size_t i = 0; i < this->AttributeDataGroup.size(); ++i)
222 {
223 if (this->AttributeDataGroup[i] >= 0)
224 {
225 H5Gclose(this->AttributeDataGroup[i]);
226 this->AttributeDataGroup[i] = -1;
227 }
228 }
229}
230
231//------------------------------------------------------------------------------
232bool vtkHDFReader::Implementation::GetPartitionExtent(hsize_t partitionIndex, int* extent)

Callers 2

CloseMethod · 0.95

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected