SURFEX v8.1
General documentation of Surfex
get_dim_fulln.F90
Go to the documentation of this file.
1 !SFX_LIC Copyright 1994-2014 CNRS, Meteo-France and Universite Paul Sabatier
2 !SFX_LIC This is part of the SURFEX software governed by the CeCILL-C licence
3 !SFX_LIC version 1. See LICENSE, CeCILL-C_V1-en.txt and CeCILL-C_V1-fr.txt
4 !SFX_LIC for details. version 1.
5 ! ########################################
6  SUBROUTINE get_dim_full_n (KDIM_FULL_IN, KDIM_FULL_OUT)
7 ! ########################################
8 !
9 !!**** *GET_DIM_FULL_n* - routine to get some ISBA fields
10 !!
11 !! PURPOSE
12 !! -------
13 !!
14 !!** METHOD
15 !! ------
16 !!
17 !! EXTERNAL
18 !! --------
19 !!
20 !!
21 !! IMPLICIT ARGUMENTS
22 !! ------------------
23 !!
24 !! REFERENCE
25 !! ---------
26 !!
27 !!
28 !! AUTHOR
29 !! ------
30 !! V. Masson *Meteo France*
31 !!
32 !! MODIFICATIONS
33 !! -------------
34 !! Original 04/2008
35 !-------------------------------------------------------------------------------
36 !
37 !* 0. DECLARATIONS
38 ! ------------
39 !
40 USE yomhook ,ONLY : lhook, dr_hook
41 USE parkind1 ,ONLY : jprb
42 !
43 IMPLICIT NONE
44 !
45 !* 0.1 Declarations of arguments
46 ! -------------------------
47 !
48 INTEGER, INTENT(IN) :: KDIM_FULL_IN
49 INTEGER, INTENT(OUT) :: KDIM_FULL_OUT ! total number of points
50 REAL(KIND=JPRB) :: ZHOOK_HANDLE
51 !
52 !
53 !* 0.2 Declarations of local variables
54 ! -------------------------------
55 !
56 !
57 !-------------------------------------------------------------------------------
58 IF (lhook) CALL dr_hook('GET_DIM_FULL_N',0,zhook_handle)
59 kdim_full_out = kdim_full_in
60 IF (lhook) CALL dr_hook('GET_DIM_FULL_N',1,zhook_handle)
61 !
62 !==============================================================================
63 !
64 END SUBROUTINE get_dim_full_n
subroutine get_dim_full_n(KDIM_FULL_IN, KDIM_FULL_OUT)
integer, parameter jprb
Definition: parkind1.F90:32
logical lhook
Definition: yomhook.F90:15