gtool5 Fortran 90/95 ライブラリ 1.0.0-rc5
English
Loading...
Searching...
No Matches
gdncfiledatamode.f90
Go to the documentation of this file.
1
16
35integer function gdncfiledatamode(fileid) result(result)
36 use netcdf, only: nf90_enddef, nf90_enotindefine, nf90_noerr
37 use dc_trace, only: dbgmessage
38 implicit none
39 integer, intent(in):: fileid
40 character(*), parameter:: subname = "GDNcFileDataMode"
41continue
42 call dbgmessage(subname)
43 result = nf90_enddef(fileid)
44 if (result == nf90_enotindefine) result = nf90_noerr
45end function gdncfiledatamode
integer function gdncfiledatamode(fileid)
デバッグ時の追跡用モジュール
Definition dc_trace.f90:150
subroutine, public dbgmessage(fmt, i, r, d, l, n, c1, c2, c3, ca)
Definition dc_trace.f90:680