diff options
Diffstat (limited to 'doc/html/fortran/h5f_FORTRAN.html')
-rw-r--r-- | doc/html/fortran/h5f_FORTRAN.html | 379 |
1 files changed, 0 insertions, 379 deletions
diff --git a/doc/html/fortran/h5f_FORTRAN.html b/doc/html/fortran/h5f_FORTRAN.html deleted file mode 100644 index fbd8ac1..0000000 --- a/doc/html/fortran/h5f_FORTRAN.html +++ /dev/null @@ -1,379 +0,0 @@ -<html> -<head><title> -FORTRAN File API -- h5f -</title> - -<!-- #BeginLibraryItem "/ed_libs/styles_RM.lbi" --> - -<!-- - * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * - * Copyright by the Board of Trustees of the University of Illinois. * - * All rights reserved. * - * * - * This file is part of HDF5. The full HDF5 copyright notice, including * - * terms governing use, modification, and redistribution, is contained in * - * the files COPYING and Copyright.html. COPYING can be found at the root * - * of the source code distribution tree; Copyright.html can be found at the * - * root level of an installed copy of the electronic HDF5 document set and * - * is linked from the top-level documents page. It can also be found at * - * http://hdf.ncsa.uiuc.edu/HDF5/doc/Copyright.html. If you do not have * - * access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu. * - * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * - --> - -<link href="../ed_styles/RMelect.css" rel="stylesheet" type="text/css"> -<!-- #EndLibraryItem --></head> - -<body bgcolor="#FFFFFF"> - - - -<center> -<h1>The FORTRAN 90 API to HDF5<br>h5f: Files</h1> -</center> - - -<dl> - - -<p> -<p> -<hr> -<p> -<a name="h5fclose_f"> -<p> -</a> - - -<dt><strong>FORTRAN interface:</strong>   <strong>h5fclose_f</strong> - -<pre> - SUBROUTINE h5fclose_f(file_id, hdferr) - IMPLICIT NONE - INTEGER(HID_T), INTENT(IN) :: file_id ! File identifier - INTEGER, INTENT(OUT) :: hdferr ! Error code - ! 0 on success and -1 on failure - END SUBROUTINE h5fclose_f -</pre> - - -<p> -<p> -<hr> -<p> -<a name="h5fcreate_f"> -<p> -</a> - - -<dt><strong>FORTRAN interface:</strong>   <strong>h5fcreate_f</strong> -<pre> - SUBROUTINE h5fcreate_f(name, access_flags, file_id, hdferr, & - creation_prp, access_prp) - IMPLICIT NONE - CHARACTER(LEN=*), INTENT(IN) :: name ! Name of the file - INTEGER, INTENT(IN) :: access_flag ! File access flags - ! Possible values are: - ! H5F_ACC_RDWR_F - ! H5F_ACC_RDONLY_F - ! H5F_ACC_TRUNC_F - ! H5F_ACC_EXCL_F - ! H5F_ACC_DEBUG_F - INTEGER(HID_T), INTENT(OUT) :: file_id ! File identifier - INTEGER, INTENT(OUT) :: hdferr ! Error code - ! 0 on success and -1 on failure - INTEGER(HID_T), OPTIONAL, INTENT(IN) :: creation_prp - ! File creation propertly - ! list identifier, if not - ! specified its value is - ! H5P_DEFAULT_F - INTEGER(HID_T), OPTIONAL, INTENT(IN) :: access_prp - ! File access property list - ! identifier, if not - ! specified its value is - ! H5P_DEFAULT_F - END SUBROUTINE h5fcreate_f -</pre> - - -<p> -<p> -<hr> -<p> -<a name="h5fis_hdf5_f"> -<p> -</a> - - -<dt><strong>FORTRAN interface:</strong>   <strong>h5fis_hdf5_f</strong> -<pre> - SUBROUTINE h5fis_hdf5_f(name, status, hdferr) - IMPLICIT NONE - CHARACTER(LEN=*), INTENT(IN) :: name ! Name of the file - LOGICAL, INTENT(OUT) :: status ! This parameter - ! indicates if file is - ! an HDF5 file - ! ( TRUE or FALSE ) - INTEGER, INTENT(OUT) :: hdferr ! Error code - ! 0 on success and -1 on failure - END SUBROUTINE h5fis_hdf5_f -</pre> - - -<p> -<p> -<hr> -<p> -<a name="h5fopen_f"> -<p> -</a> - - -<dt><strong>FORTRAN interface:</strong>   <strong>h5fopen_f</strong> -<pre> - SUBROUTINE h5fopen_f(name, access_flags, file_id, hdferr, & - access_prp) - IMPLICIT NONE - CHARACTER(LEN=*), INTENT(IN) :: name ! Name of the file - INTEGER, INTENT(IN) :: access_flag ! File access flags - ! Possible values are: - ! H5F_ACC_RDWR_F - ! H5F_ACC_RDONLY_F - INTEGER(HID_T), INTENT(OUT) :: file_id ! File identifier - INTEGER, INTENT(OUT) :: hdferr ! Error code - ! 0 on success and -1 on failure - INTEGER(HID_T), OPTIONAL, INTENT(IN) :: access_prp - ! File access property list - ! identifier - END SUBROUTINE h5fopen_f -</pre> - - -<p> -<p> -<hr> -<p> -<a name="h5freopen_f"> -<p> -</a> - - -<dt><strong>FORTRAN interface:</strong>   <strong>h5freopen_f</strong> -<pre> - SUBROUTINE h5freopen_f(file_id, new_file_id, hdferr) - IMPLICIT NONE - INTEGER(HID_T), INTENT(IN) :: file_id ! File identifier - INTEGER(HID_T), INTENT(OUT) :: new_file_id ! New file identifier - INTEGER, INTENT(OUT) :: hdferr ! Error code - ! 0 on success and -1 on failure - END SUBROUTINE h5freopen_f -</pre> - - -<p> -<p> -<hr> -<p> -<a name="h5fflush_f"> -<p> -</a> - - -<dt><strong>FORTRAN interface:</strong>   <strong>h5fflush_f</strong> -<pre> - SUBROUTINE h5fflush_f(obj_id, new_file_id, hdferr) - IMPLICIT NONE - INTEGER(HID_T), INTENT(IN) :: obj_id ! Object identifier - INTEGER, INTENT(IN) :: scope ! Flag with two possible values: - ! H5F_SCOPE_GLOBAL_F - ! H5F_SCOPE_LOCAL_F - INTEGER, INTENT(OUT) :: hdferr ! Error code - ! 0 on success and -1 on failure - END SUBROUTINE h5fflush_f -</pre> - - -<p> -<p> -<hr> -<p> -<a name="h5fmount_f"> -<p> -</a> - - -<dt><strong>FORTRAN interface:</strong>   <strong>h5fmount_f</strong> -<pre> - SUBROUTINE h5fmount_f(loc_id, name, child_id, hdferr) - IMPLICIT NONE - INTEGER(HID_T), INTENT(IN) :: loc_id ! File or group identifier - CHARACTER(LEN=*), INTENT(IN):: name ! Group name at locationloc_id - INTEGER(HID_T), INTENT(IN) :: child_id ! File(to be mounted) identifier - INTEGER, INTENT(OUT) :: hdferr ! Error code - ! 0 on success and -1 on failure - END SUBROUTINE h5fmount_f -</pre> - - -<p> -<p> -<hr> -<p> -<a name="h5funmount_f"> -<p> -</a> - - -<dt><strong>FORTRAN interface:</strong>   <strong>h5funmount_f</strong> -<pre> - SUBROUTINE h5funmount_f(loc_id, name, child_id, hdferr) - IMPLICIT NONE - INTEGER(HID_T), INTENT(IN) :: loc_id ! File or group identifier - CHARACTER(LEN=*), INTENT(IN):: name ! Group name at location loc_id - INTEGER, INTENT(OUT) :: hdferr ! Error code - ! 0 on success and -1 on failure - END SUBROUTINE h5funmount_f -</pre> - - -<p> -<p> -<hr> -<p> -<a name="h5fget_create_plist_f"> -<p> -</a> - - -<dt><strong>FORTRAN interface:</strong>   <strong>h5fget_create_plist_f</strong> -<pre> - SUBROUTINE h5fget_create_plist_f(file_id, fcpl_id, hdferr) - - IMPLICIT NONE - INTEGER(HID_T), INTENT(IN) :: file_id ! File identifier - INTEGER(HID_T), INTENT(OUT) :: fcpl_id ! File creation property list identifier - INTEGER, INTENT(OUT) :: hdferr ! Error code - ! 0 on success and -1 on failure - END SUBROUTINE h5fget_create_plist_f -</pre> - - -<p> -<p> -<hr> -<p> -<a name="h5fget_access_plist_f"> -<p> -</a> - - -<dt><strong>FORTRAN interface:</strong>   <strong>h5fget_access_plist_f</strong> -<pre> - SUBROUTINE h5fget_access_plist_f(file_id, fcpl_id, hdferr) - - IMPLICIT NONE - INTEGER(HID_T), INTENT(IN) :: file_id ! File identifier - INTEGER(HID_T), INTENT(OUT) :: fapl_id ! File access property list identifier - INTEGER, INTENT(OUT) :: hdferr ! Error code - ! 0 on success and -1 on failure - END SUBROUTINE h5fget_access_plist_f -</pre> - - -<p> -<p> -<hr> -<p> -<a name="h5fget_obj_count_f"> -<p> -</a> - - -<dt><strong>FORTRAN interface:</strong>   <strong>h5fget_obj_count_f</strong> -<pre> - SUBROUTINE h5fget_obj_count_f(file_id, obj_type, obj_count, hdferr) - - IMPLICIT NONE - INTEGER(HID_T), INTENT(IN) :: file_id ! File identifier - INTEGER, INTENT(IN) :: obj_type ! Object types, possible values are: - ! H5F_OBJ_FILE_F - ! H5F_OBJ_GROUP_F - ! H5F_OBJ_DATASET_F - ! H5F_OBJ_DATATYPE_F - ! H5F_OBJ_ALL_F - INTEGER, INTENT(OUT) :: obj_count ! number of opened objects - INTEGER, INTENT(OUT) :: hdferr ! Error code - ! 0 on success and -1 on failure - END SUBROUTINE h5fget_obj_count_f -</pre> - - -<p> -<p> -<hr> -<p> -<a name="h5fget_obj_ids_f"> -<p> -</a> - - -<dt><strong>FORTRAN interface:</strong>   <strong>h5fget_obj_ids_f</strong> -<pre> - SUBROUTINE h5fget_obj_ids_f(file_id, obj_type, max_objs, obj_ids, hdferr) - - IMPLICIT NONE - INTEGER(HID_T), INTENT(IN) :: file_id ! File identifier - INTEGER, INTENT(IN) :: obj_type ! Object types, possible values are: - ! H5F_OBJ_FILE_F - ! H5F_OBJ_GROUP_F - ! H5F_OBJ_DATASET_F - ! H5F_OBJ_DATATYPE_F - ! H5F_OBJ_ALL_F - INTEGER, INTENT(IN) :: max_objs ! Maximum # of object IDs to retrieve - INTEGER(HID_T), DIMENSION(*), INTENT(OUT) :: obj_ids - ! array of requested object identifiers - INTEGER, INTENT(OUT) :: hdferr ! Error code - ! 0 on success and -1 on failure - END SUBROUTINE h5fget_obj_ids_f -</pre> - - -<p> -<p> -<hr> -<p> -<a name="h5fget_freespace_f"> -<p> -</a> - - -<dt><strong>FORTRAN interface:</strong>   <strong>h5fget_freespace_f</strong> -<pre> - SUBROUTINE h5fget_freespace_f(file_id, free_space, hdferr) - - IMPLICIT NONE - INTEGER(HID_T), INTENT(IN) :: file_id ! File identifier - INTEGER(HSSIZE_T), INTENT(OUT) :: free_space ! amount of free space in file - INTEGER, INTENT(OUT) :: hdferr ! Error code - ! 0 on success and -1 on failure - END SUBROUTINE h5fget_freespace_f -</pre> - - -</dl> - -<p> -<p> -<hr> - - -<!-- #BeginLibraryItem "/ed_libs/Footer.lbi" --><address> -<a href="mailto:hdfhelp@ncsa.uiuc.edu">HDF Help Desk</a> -<br> -Describes HDF5 Release 1.6.1, October 2003 -</address><!-- #EndLibraryItem --> - -Last modified: 30 September, 2002 - -</body> -</html> |