MONC
parkind1.F90
Go to the documentation of this file.
1 ! *****************************COPYRIGHT*******************************
2 ! (C) Crown copyright Met Office. All rights reserved.
3 ! For further details please refer to the file COPYRIGHT.txt
4 ! which you should have received as part of this distribution.
5 ! *****************************COPYRIGHT*******************************
6 
7 MODULE parkind1
8 
9 !
10 ! Description:
11 ! Dummy module to replace the DrHook library. Defines data types
12 ! which would otherwise be declared by the DrHook library.
13 !
14 ! Owner: UM System team
15 !
16 ! Code description:
17 ! Language: Fortran 90.
18 ! This code is written to UM programming standards version 8.1.
19 
20 
21  IMPLICIT NONE
22 
23  INTEGER, PARAMETER :: jpim = selected_int_kind(9)
24  INTEGER, PARAMETER :: jprb = selected_real_kind(13,300)
25 
26 END MODULE parkind1
parkind1
Definition: parkind1.F90:7
parkind1::jprb
integer, parameter jprb
Definition: parkind1.F90:24
parkind1::jpim
integer, parameter jpim
Definition: parkind1.F90:23