Changeset 1155 for LMDZ4/branches/LMDZ4-dev/libf/bibio
- Timestamp:
- May 6, 2009, 7:09:41 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/branches/LMDZ4-dev/libf/bibio/nf95_put_var_m.f90
r1154 r1155 22 22 stride, map, ncerr) 23 23 24 use typesizes, only: FourByteReal25 24 use netcdf, only: nf90_put_var 26 25 use handle_err_m, only: handle_err 27 26 28 27 integer, intent(in) :: ncid, varid 29 real (kind = FourByteReal), intent(in) :: values(:)28 real, intent(in) :: values(:) 30 29 integer, dimension(:), optional, intent(in) :: start, count, stride, map 31 30 integer, intent(out), optional:: ncerr … … 52 51 stride, map, ncerr) 53 52 54 use typesizes, only: FourByteReal55 53 use netcdf, only: nf90_put_var 56 54 use handle_err_m, only: handle_err 57 55 58 56 integer, intent( in) :: ncid, varid 59 real (kind = FourByteReal), intent( in) :: values(:, :)57 real, intent( in) :: values(:, :) 60 58 integer, dimension(:), optional, intent( in) :: start, count, stride, map 61 59 integer, intent(out), optional:: ncerr … … 82 80 stride, map, ncerr) 83 81 84 use typesizes, only: FourByteReal85 82 use netcdf, only: nf90_put_var 86 83 use handle_err_m, only: handle_err 87 84 88 85 integer, intent( in) :: ncid, varid 89 real (kind = FourByteReal), intent( in) :: values(:, :, :)86 real, intent( in) :: values(:, :, :) 90 87 integer, dimension(:), optional, intent( in) :: start, count, stride, map 91 88 integer, intent(out), optional:: ncerr … … 112 109 stride, map, ncerr) 113 110 114 use typesizes, only: FourByteReal115 111 use netcdf, only: nf90_put_var 116 112 use handle_err_m, only: handle_err 117 113 118 114 integer, intent( in) :: ncid, varid 119 real (kind = FourByteReal), intent( in) :: values(:, :, :, :)115 real, intent( in) :: values(:, :, :, :) 120 116 integer, dimension(:), optional, intent( in) :: start, count, stride, map 121 117 integer, intent(out), optional:: ncerr
Note: See TracChangeset
for help on using the changeset viewer.