New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
mod_stdtype.f90 in branches/nemo_v3_3_beta/NEMOGCM/EXTERNAL/XMLIO_SERVER/src/XMLIO – NEMO

source: branches/nemo_v3_3_beta/NEMOGCM/EXTERNAL/XMLIO_SERVER/src/XMLIO/mod_stdtype.f90 @ 2281

Last change on this file since 2281 was 2281, checked in by smasson, 14 years ago

set proper svn properties to all files...

  • Property svn:keywords set to Id
File size: 1.5 KB
Line 
1MODULE mod_stdtype
2
3  INTEGER,PARAMETER :: integer0 = 0
4  INTEGER,PARAMETER :: integer1 = 1
5  INTEGER,PARAMETER :: integer2 = 2
6  INTEGER,PARAMETER :: integer3 = 3
7  INTEGER,PARAMETER :: integer4 = 4
8  INTEGER,PARAMETER :: integer5 = 5
9  INTEGER,PARAMETER :: integer6 = 6
10  INTEGER,PARAMETER :: integer7 = 7
11 
12  INTEGER,PARAMETER :: real0    = 8
13  INTEGER,PARAMETER :: real1    = 9
14  INTEGER,PARAMETER :: real2    = 10
15  INTEGER,PARAMETER :: real3    = 11
16  INTEGER,PARAMETER :: real4    = 12
17  INTEGER,PARAMETER :: real5    = 13
18  INTEGER,PARAMETER :: real6    = 14
19  INTEGER,PARAMETER :: real7    = 15
20
21  INTEGER,PARAMETER :: logical0 = 16
22  INTEGER,PARAMETER :: logical1 = 17
23  INTEGER,PARAMETER :: logical2 = 18
24  INTEGER,PARAMETER :: logical3 = 19
25  INTEGER,PARAMETER :: logical4 = 20
26  INTEGER,PARAMETER :: logical5 = 21
27  INTEGER,PARAMETER :: logical6 = 22
28  INTEGER,PARAMETER :: logical7 = 23
29 
30  INTEGER,PARAMETER :: string0  = 24
31  INTEGER,PARAMETER :: string1  = 25
32  INTEGER,PARAMETER :: string2  = 26
33  INTEGER,PARAMETER :: string3  = 27
34  INTEGER,PARAMETER :: string4  = 28
35  INTEGER,PARAMETER :: string5  = 29
36  INTEGER,PARAMETER :: string6  = 30
37  INTEGER,PARAMETER :: string7  = 31
38
39  INTEGER,PARAMETER :: char0   = 32
40  INTEGER,PARAMETER :: char1   = 33
41  INTEGER,PARAMETER :: char2   = 34
42  INTEGER,PARAMETER :: char3   = 35
43  INTEGER,PARAMETER :: char4   = 36
44  INTEGER,PARAMETER :: char5   = 37
45  INTEGER,PARAMETER :: char6   = 38
46  INTEGER,PARAMETER :: char7   = 39
47 
48END MODULE mod_stdtype
Note: See TracBrowser for help on using the repository browser.