diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2003-03-19 16:09:07 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2003-03-19 16:09:07 (GMT) |
commit | ec51828b763d250dbe1c6de466baa52cc87e8a3e (patch) | |
tree | f71d714e1d90d93ad4e383b5233aa538f6aeee29 /doc/html/fortran/h5p_FORTRAN.html | |
parent | 621f8c50b61617833bfe9e71b347e8b892696478 (diff) | |
download | hdf5-ec51828b763d250dbe1c6de466baa52cc87e8a3e.zip hdf5-ec51828b763d250dbe1c6de466baa52cc87e8a3e.tar.gz hdf5-ec51828b763d250dbe1c6de466baa52cc87e8a3e.tar.bz2 |
[svn-r6491]
Purpose: Catching up with the C library
Description: Updated documentation files to include information on the following functions
h5iget_name_f
h5tis_variavle_str_f
h5zunregister_f
h5zfilter_avail_f
h5pset_shuffle_f
h5pset_fletcher32
h5pset_edc_check_f
h5pget_edc_check_f
h5dfill_f
Solution:
Platforms tested: arabica(C and F90), burrwhite (pgcc and pgf90), modi4 (F90 and parallel)
Misc. update:
Diffstat (limited to 'doc/html/fortran/h5p_FORTRAN.html')
-rw-r--r-- | doc/html/fortran/h5p_FORTRAN.html | 100 |
1 files changed, 97 insertions, 3 deletions
diff --git a/doc/html/fortran/h5p_FORTRAN.html b/doc/html/fortran/h5p_FORTRAN.html index 296be3d..efe23c6 100644 --- a/doc/html/fortran/h5p_FORTRAN.html +++ b/doc/html/fortran/h5p_FORTRAN.html @@ -219,8 +219,8 @@ FORTRAN Property List API -- h5p SUBROUTINE h5pset_deflate_f(prp_id, level, hdferr) IMPLICIT NONE INTEGER(HID_T), INTENT(IN) :: prp_id ! Property list identifier - INTEGER, INTENT(IN) :: leveli ! Compression level - INTEGER, INTENT(OUT) :: hdferr ! Error code + INTEGER, INTENT(IN) :: level ! Compression level + INTEGER, INTENT(OUT) :: hdferr ! Error code ! 0 on success and -1 on failure END SUBROUTINE h5pset_deflate_f @@ -2234,6 +2234,100 @@ FORTRAN Property List API -- h5p ! Failure: -1 END SUBROUTINE h5pget_class_name_f </pre> + + +<p> +<p> +<hr> +<p> +<a name="h5pset_shuffle_f"> +<p> +</a> + + +<dt><strong>FORTRAN interface:</strong>   <strong>h5pset_shuffle_f</strong> +<pre> + + SUBROUTINE h5pset_shuffle_f(prp_id, type_size, hdferr) + IMPLICIT NONE + INTEGER(HID_T), INTENT(IN) :: prp_id ! Property list identifier + INTEGER, INTENT(IN) :: type_size ! Datatype size in bytes + INTEGER, INTENT(OUT) :: hdferr ! Error code + ! 0 on success and -1 on failure + + END SUBROUTINE h5pset_shuffle_f +</pre> + + +<p> +<p> +<hr> +<p> +<a name="h5pset_edc_check_f"> +<p> +</a> + + +<dt><strong>FORTRAN interface:</strong>   <strong>h5pset_edc_check_f</strong> +<pre> + + SUBROUTINE h5pset_edc_check_f(prp_id, flag, hdferr) + IMPLICIT NONE + INTEGER(HID_T), INTENT(IN) :: prp_id ! Dataset transfer property list identifier + INTEGER, INTENT(IN) :: flag ! EDC flag; possible values + ! H5Z_DISABLE_EDC_F + ! H5Z_ENABLE_EDC_F + INTEGER, INTENT(OUT) :: hdferr ! Error code + ! 0 on success and -1 on failure + + END SUBROUTINE h5pset_edc_check_f +</pre> + + +<p> +<p> +<hr> +<p> +<a name="h5pget_edc_check_f"> +<p> +</a> + + +<dt><strong>FORTRAN interface:</strong>   <strong>h5pget_edc_check_f</strong> +<pre> + + SUBROUTINE h5pget_edc_check_f(prp_id, hdferr) + IMPLICIT NONE + INTEGER(HID_T), INTENT(IN) :: prp_id ! Dataset transfer property list identifier + INTEGER, INTENT(OUT) :: flag ! EDC flag; possible values + ! H5Z_DISABLE_EDC_F + ! H5Z_ENABLE_EDC_F + INTEGER, INTENT(OUT) :: hdferr ! Error code + ! 0 on success and -1 on failure + + END SUBROUTINE h5pget_edc_check_f +</pre> + + +<p> +<p> +<hr> +<p> +<a name="h5pset_fletcher32_f"> +<p> +</a> + + +<dt><strong>FORTRAN interface:</strong>   <strong>h5pset_fletcher32_f</strong> +<pre> + + SUBROUTINE h5pset_fletcher32_f(prp_id, hdferr) + IMPLICIT NONE + INTEGER(HID_T), INTENT(IN) :: prp_id ! Dataset creation property list identifier + INTEGER, INTENT(OUT) :: hdferr ! Error code + ! 0 on success and -1 on failure + + END SUBROUTINE h5pset_fletcher32_f <p> <p> <hr> @@ -2246,7 +2340,7 @@ FORTRAN Property List API -- h5p Describes HDF5 Release 1.5, Unreleased Development Branch </address><!-- #EndLibraryItem --> -Last modified: 14 March 2003 +Last modified: 19 March 2003 </body> </html> |