NCEPLIBS-bufr  11.5.0
 All Data Structures Files Functions Variables Pages
moda_usrint.F
1  MODULE moda_usrint
2 
3 #ifndef MAXSS_H
4 #define MAXSS_H
5  USE modv_maxss
6 #endif
7 
8 #ifndef NFILES_H
9 #define NFILES_H
10  USE modv_nfiles
11 #endif
12 
13 #ifdef DYNAMIC_ALLOCATION
14  INTEGER, ALLOCATABLE :: nval(:)
15  INTEGER, ALLOCATABLE :: inv(:,:)
16  INTEGER, ALLOCATABLE :: nrfelm(:,:)
17  REAL*8, ALLOCATABLE :: val(:,:)
18 #else
19  INTEGER :: nval(nfiles)
20  INTEGER :: inv(maxss,nfiles)
21  INTEGER :: nrfelm(maxss,nfiles)
22  REAL*8 :: val(maxss,nfiles)
23 #endif
24 
25  END MODULE
This module declares and initializes the MAXSS variable.
Definition: modv_MAXSS.F:16
This module declares and initializes the NFILES variable.
Definition: modv_NFILES.F:16