SURFEX v8.1
General documentation of Surfex
modd_select.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  MODULE modd_select
7 ! ####################
8 !
9 !!**** *MODD_SELECT - declaration of surface ATM
10 !!
11 !! PURPOSE
12 !! -------
13 ! Declaration of surface parameters
14 !
15 !!
16 !!** IMPLICIT ARGUMENTS
17 !! ------------------
18 !! None
19 !!
20 !! REFERENCE
21 !! ---------
22 !!
23 !! AUTHOR
24 !! ------
25 !! P. Le Moigne *Meteo France*
26 !!
27 !! MODIFICATIONS
28 !! -------------
29 !! Original 3/2009
30 !
31 !* 0. DECLARATIONS
32 ! ------------
33 !
34 !
35 IMPLICIT NONE
36 !
37 !-----------------------------------------------------------------------------------------------------
38 LOGICAL :: lselect = .false.
39  ! activates output selection from namelist
40 !
41  CHARACTER(LEN=12), DIMENSION(200) :: cname_select
42  ! name of output fields in namelist
43 !
44 LOGICAL :: lselect_user
45  CHARACTER(LEN=12), DIMENSION(:), POINTER :: cname_user
46 !
47 !-----------------------------------------------------------------------------------------------------
48 !
49 END MODULE modd_select
character(len=12), dimension(200) cname_select
Definition: modd_select.F90:41
character(len=12), dimension(:), pointer cname_user
Definition: modd_select.F90:45
logical lselect_user
Definition: modd_select.F90:44
logical lselect
Definition: modd_select.F90:38