本文整理汇总了C++中group::hid方法的典型用法代码示例。如果您正苦于以下问题:C++ group::hid方法的具体用法?C++ group::hid怎么用?C++ group::hid使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类group
的用法示例。
在下文中一共展示了group::hid方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: open
inline void group::open(group const& other, std::string const& name)
{
if (hid_ >= 0) {
throw error("h5xx::group object is already in use");
}
if (exists_group(other, name)) {
hid_ = H5Gopen(other.hid(), name.c_str(), H5P_DEFAULT);
}
else {
hid_t lcpl_id = H5Pcreate(H5P_LINK_CREATE); // create group creation property list
H5Pset_create_intermediate_group(lcpl_id, 1); // set intermediate link creation
hid_ = H5Gcreate(other.hid(), name.c_str(), lcpl_id, H5P_DEFAULT, H5P_DEFAULT);
}
if (hid_ < 0){
throw error("creating or opening group \"" + name + "\"");
}
}
示例2: exists_group
/**
* return true if group "name" exists in group "grp"
*/
inline bool exists_group(group const& grp, std::string const& name)
{
hid_t hid = grp.hid();
H5E_BEGIN_TRY {
hid = H5Gopen(hid, name.c_str(), H5P_DEFAULT);
if (hid > 0) {
H5Gclose(hid);
}
} H5E_END_TRY
return (hid > 0);
}