SURFEX v7.3
General documentation of Surfex
 All Classes Files Functions Variables Typedefs
/home/dasprezs/EXPORT_v7_3/src/OFFLIN/get_interp_halo_ol.F90
Go to the documentation of this file.
00001 !     #########
00002       SUBROUTINE GET_INTERP_HALO_OL(HGRID,KHALO)
00003 !     #######################################################
00004 !
00005 !
00006 !!****  *GET_INTERP_HALO* - gets the value of the number of points in the halo 
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    07/2011 
00032 !-------------------------------------------------------------------------------
00033 !
00034 !*       0.    DECLARATIONS
00035 !              ------------
00036 !
00037 !
00038 !
00039 USE YOMHOOK   ,ONLY : LHOOK,   DR_HOOK
00040 USE PARKIND1  ,ONLY : JPRB
00041 !
00042 IMPLICIT NONE
00043 !
00044 !*       0.1   Declarations of arguments
00045 !              -------------------------
00046 !
00047  CHARACTER(LEN=10),     INTENT(IN) :: HGRID    ! grid type
00048 INTEGER,               INTENT(OUT):: KHALO
00049 !
00050 !*       0.2   Declarations of local variables
00051 !              -------------------------------
00052 !
00053 REAL(KIND=JPRB) :: ZHOOK_HANDLE
00054 !
00055 !-------------------------------------------------------------------------------
00056 !
00057 IF (LHOOK) CALL DR_HOOK('GET_INTERP_HALO_OL',0,ZHOOK_HANDLE)
00058 !
00059 KHALO=2
00060 !
00061 IF (LHOOK) CALL DR_HOOK('GET_INTERP_HALO_OL',1,ZHOOK_HANDLE)
00062 !
00063 !-------------------------------------------------------------------------------
00064 !
00065 END SUBROUTINE GET_INTERP_HALO_OL