-
Notifications
You must be signed in to change notification settings - Fork 12
/
error_code.F90
111 lines (76 loc) · 3.16 KB
/
error_code.F90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
!-------------------------------------------------------------------------------
! $Id$
!-------------------------------------------------------------------------------
module error_code
! Description:
! Since f90/95 lacks enumeration, we're stuck numbering each
! error code by hand like this.
! We are "enumerating" error codes to be used with CLUBB. Adding
! additional codes is as simple adding an additional integer
! parameter. The error codes are ranked by severity, the higher
! number being more servere. When two errors occur, assign the
! most servere to the output.
! This code also handles subroutines related to debug_level. See
! the 'set_clubb_debug_level' description for more detail.
! References:
! None
!-------------------------------------------------------------------------------
implicit none
private ! Default Scope
public :: &
clubb_at_least_debug_level, &
set_clubb_debug_level, &
initialize_error_headers
private :: clubb_debug_level
! Model-Wide Debug Level
integer, save :: clubb_debug_level = 0
integer, public :: err_code = 0;
character(len=35), public :: err_header
!$omp threadprivate(clubb_debug_level,err_code,err_header)
! Error Code Values
integer, parameter, public :: &
clubb_no_error = 0, &
clubb_fatal_error = 99
contains
!-------------------------------------------------------------------------------
! Description:
! Checks to see if clubb has been set to a specified debug level
!-------------------------------------------------------------------------------
logical function clubb_at_least_debug_level( level )
implicit none
! Input variable
integer, intent(in) :: level ! The debug level being checked against the current setting
! ---- Begin Code ----
clubb_at_least_debug_level = ( level <= clubb_debug_level )
return
end function clubb_at_least_debug_level
subroutine initialize_error_headers
implicit none
#ifdef _OPENMP
integer :: omp_get_thread_num
write(err_header,'(A7,I7,A20)') "Thread ", omp_get_thread_num(), " -- CLUBB -- ERROR: "
#else
integer :: getpid
write(err_header,'(A20)') " -- CLUBB -- ERROR: "
#endif
end subroutine initialize_error_headers
!-------------------------------------------------------------------------------
! Description:
! Accessor for clubb_debug_level
!
! 0 => Print no debug messages to the screen
! 1 => Print lightweight debug messages, e.g. print statements
! 2 => Print debug messages that require extra testing,
! e.g. checks for NaNs and spurious negative values.
! References:
! None
!-------------------------------------------------------------------------------
subroutine set_clubb_debug_level( level )
implicit none
! Input variable
integer, intent(in) :: level ! The debug level being checked against the current setting
! ---- Begin Code ----
clubb_debug_level = max(level,0)
return
end subroutine set_clubb_debug_level
end module error_code