1 | module handle_err_m |
---|
2 | |
---|
3 | implicit none |
---|
4 | |
---|
5 | contains |
---|
6 | |
---|
7 | subroutine handle_err(message, ncerr, ncid, varid) |
---|
8 | |
---|
9 | use netcdf, only: nf90_strerror, nf90_noerr, nf90_close |
---|
10 | |
---|
11 | character(len=*), intent(in):: message |
---|
12 | ! (should include name of calling procedure) |
---|
13 | |
---|
14 | integer, intent(in):: ncerr |
---|
15 | |
---|
16 | integer, intent(in), optional :: ncid |
---|
17 | ! (Provide this argument if you want "handle_err" to try to close |
---|
18 | ! the file.) |
---|
19 | |
---|
20 | integer, intent(in), optional :: varid |
---|
21 | |
---|
22 | ! Variable local to the procedure: |
---|
23 | integer ncerr_close |
---|
24 | |
---|
25 | !------------------- |
---|
26 | |
---|
27 | if (ncerr /= nf90_noerr) then |
---|
28 | print *, message, ":" |
---|
29 | if (present(varid)) print *, "varid = ", varid |
---|
30 | print *, trim(nf90_strerror(ncerr)) |
---|
31 | if (present(ncid)) then |
---|
32 | ! Try to close, to leave the file in a consistent state: |
---|
33 | ncerr_close = nf90_close(ncid) |
---|
34 | ! (do not call "nf95_close", we do not want to recurse) |
---|
35 | if (ncerr_close /= nf90_noerr) then |
---|
36 | print *, "nf90_close:" |
---|
37 | print *, trim(nf90_strerror(ncerr_close)) |
---|
38 | end if |
---|
39 | end if |
---|
40 | stop 1 |
---|
41 | end if |
---|
42 | |
---|
43 | end subroutine handle_err |
---|
44 | |
---|
45 | end module handle_err_m |
---|