Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Content Layer
id1195548671
Content Column
width50.00001%
id1195578110
classrm_pagetree_col mobile-hide
Content Block
id1195578111
 
Content Column
width50.00001%
id1195548673
classhdf-rm-main-column
Content Block
id1195548672

Include Content
render-without-blockstrue
page.rm-navbar
HTML Wrap
classhdf-print-only

Page Title

HTML Wrap
classhdf-rm-summary-block

Hdf rm anchor
AnchorNamesummary

Excerpt

Opens an existing group in a file

HTML Wrap
classhdf-rm-content-block

Hdf rm anchor
AnchorNamesignature

Signature:
HTML Wrap
classhdf-rm-section
HTML Wrap
classhdf-togglebox hdf-c

HTML Add Class
hdf-togglebutton-visible
hdf-togglebutton-visible
selector.hdf-togglebutton.hdf-c

HTML
<pre><code class="language-c">hid_t H5Gopen( hid_t loc_id, const char *name )</code></pre>
HTML
<pre><code class="language-c">hid_t H5Gopen( hid_t loc_id, const char * name, hid_t gapl_id )</code></pre>
HTML Wrap
classhdf-togglebox hdf-fortran hdf-togglebox-hidden

HTML Add Class
hdf-togglebutton-visible
hdf-togglebutton-visible
selector.hdf-togglebutton.hdf-fortran

HTML
<pre><code class="language-fortran">SUBROUTINE h5gopen_f(loc_id, name, grp_id, hdferr, gapl_id)
  IMPLICIT NONE
  INTEGER(HID_T), INTENT(IN) :: loc_id   ! File or group identifier 
  CHARACTER(LEN=*), INTENT(IN) :: name   ! Name of the group 
  INTEGER(HID_T), INTENT(OUT) :: grp_id  ! File identifier 
  INTEGER, INTENT(OUT) :: hdferr         ! Error code  
                                         ! 0 on success and -1 on failure
  INTEGER(HID_T), OPTIONAL, INTENT(IN) :: gapl_id  
                                         ! Group access property list identifier
END SUBROUTINE h5gopen_f</code></pre>

Hdf rm anchor
AnchorNamedescription

Description:
HTML Wrap
classhdf-rm-section

H5G_OPEN is a macro that is mapped to either H5G_OPEN1 or H5G_OPEN2, depending on the needs of the application.

Such macros are provided to facilitate application compatibility. For more information on macro use and mappings, see the API Compatibility Macros in HDF5 document.

When both the HDF5 library and the application are built and installed with no specific compatibility flags, H5G_OPEN is mapped to the most recent version of the function, currently H5G_OPEN2. If the library and/or application is compiled for Release 1.6 emulation, H5G_OPEN will be mapped to H5G_OPEN1. Function-specific flags are available to override these settings on a function-by-function basis when the application is compiled.

Specific compile-time compatibility flags and the resulting mappings are as follows:

Compatibility settingH5Gopen mapping

Global settings
No compatibility flagH5Gopen2 
Enable deprecated symbolsH5Gopen2 
Disable deprecated symbolsH5Gopen2 
Emulate Release 1.6 interface    H5Gopen1 

Function-level macros
H5Gopen_vers = 2H5Gopen2
H5Gopen_vers = 1H5Gopen1

A group created with this macro should be closed with H5G_CLOSE when the group is no longer needed so that resource leaks will not develop.

Hdf rm anchor
AnchorNamehistory

History:
HTML Wrap
classhdf-rm-section
Release    Change
1.8.0The function H5Gopen renamed to H5Gopen1 and deprecated in this release. 
The macro H5Gopen and the function H5Gopen2 introduced in this release.