SURFEX v7.3
General documentation of Surfex
 All Classes Files Functions Variables Typedefs
/home/dasprezs/EXPORT_v7_3/src/SURFEX/get_surf_atm_sso_rough.F90
Go to the documentation of this file.
00001 !     ########################################################################
00002       SUBROUTINE GET_SURF_ATM_SSO_ROUGH(HROUGH)
00003 !     ########################################################################
00004 !
00005 !!****  *DEFAULT_ISBA* - routine to get value of the
00006 !                        main logical switch for orographic roughness
00007 !!
00008 !!    PURPOSE
00009 !!    -------
00010 !!
00011 !!**  METHOD
00012 !!    ------
00013 !!
00014 !!    EXTERNAL
00015 !!    --------
00016 !!
00017 !!
00018 !!    IMPLICIT ARGUMENTS
00019 !!    ------------------
00020 !!
00021 !!    REFERENCE
00022 !!    ---------
00023 !!
00024 !!
00025 !!    AUTHOR
00026 !!    ------
00027 !!      V. Masson  *Meteo France*       
00028 !!
00029 !!    MODIFICATIONS
00030 !!    -------------
00031 !!      Original    10/2010
00032 !-------------------------------------------------------------------------------
00033 !
00034 !*       0.    DECLARATIONS
00035 !              ------------
00036 !
00037 USE MODN_SSO_n, ONLY : CROUGH
00038 !
00039 USE YOMHOOK   ,ONLY : LHOOK,   DR_HOOK
00040 USE PARKIND1  ,ONLY : JPRB
00041 !
00042 IMPLICIT NONE
00043  CHARACTER(LEN=4), INTENT(OUT) :: HROUGH
00044 REAL(KIND=JPRB) :: ZHOOK_HANDLE
00045 !
00046 !*       0.1   Declarations of arguments
00047 !-------------------------------------------------------------------------------
00048 !
00049 ! General switch
00050 !
00051 IF (LHOOK) CALL DR_HOOK('GET_SURF_ATM_SSO_ROUGH',0,ZHOOK_HANDLE)
00052 HROUGH = CROUGH
00053 IF (LHOOK) CALL DR_HOOK('GET_SURF_ATM_SSO_ROUGH',1,ZHOOK_HANDLE)
00054 !
00055 END SUBROUTINE GET_SURF_ATM_SSO_ROUGH