Created a tag for the 2012 HWRF baseline tests.
[WPS-merge.git] / hwrf-baseline-20120103-1354 / geogrid / src / wrf_debug.F
blob1f7dd030a2fe13a8d1921bc88822077640de86c8
1 subroutine wrf_debug(i, msg)
3    implicit none
5    ! Arguments
6    integer, intent(in) :: i
7    character (len=*), intent(in) :: msg
9    write(6,*) 'WRF_DEBUG:'//msg
11 end subroutine wrf_debug
14 subroutine wrf_message(msg)
16    implicit none
18    ! Arguments
19    character (len=*), intent(in) :: msg
21    write(6,*) 'WRF_MESSAGE:'//msg
23 end subroutine wrf_message
26 subroutine wrf_error_fatal(msg)
28    implicit none
30    ! Arguments
31    character (len=*), intent(in) :: msg
33    write(6,*) 'WRF_ERROR_FATAL:'//msg
35    stop
37 end subroutine wrf_error_fatal
40 subroutine wrf_error_fatal3(msg)
42    implicit none
44    ! Arguments
45    character (len=*), intent(in) :: msg
47    write(6,*) 'WRF_ERROR_FATAL:'//msg
49    stop
51 end subroutine wrf_error_fatal3