Returns the HDF5 object id of the group.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(hdf5_obj), | intent(in) | :: | this |
A HDF5 object |
||
| character(len=*), | intent(in) | :: | groupname |
Name of region |
impure function hdf5_obj_GetGroupObject(this,groupname) result(val) !> Returns the HDF5 object id of the group. implicit none class(hdf5_obj), intent(in) :: this !! A HDF5 object character(len=*), intent(in) :: groupname !! Name of region integer(HID_T) :: val if (trim(adjustl(groupname)).eq.'/') then val = this%fid else ! get index of this group call this%tbl%Get(key=this%tbl%HashString(trim(adjustl(this%FixGroupName(groupname)))),val=val) end if return end function hdf5_obj_GetGroupObject