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

Method GetStepsGroup

IO/HDF/vtkHDFWriterImplementation.cxx:236–246  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

234
235//------------------------------------------------------------------------------
236hid_t vtkHDFWriter::Implementation::GetStepsGroup(hid_t currentGroup)
237{
238 if (H5Lexists(currentGroup, PATH::STEPS.c_str(), H5P_DEFAULT))
239 {
240 // Store the last steps group accessed. There can be multiple for a given file
241 // if it composite. This Steps group is only used internally.
242 this->StepsGroup = H5Gopen(currentGroup, PATH::STEPS.c_str(), H5P_DEFAULT);
243 return this->StepsGroup;
244 }
245 return H5I_INVALID_HID;
246}
247
248//------------------------------------------------------------------------------
249std::vector<vtkHDFWriter::Implementation::PolyDataTopos>

Calls 1

c_strMethod · 0.45

Tested by

no test coverage detected