NCEPLIBS-bufr  11.5.0
 All Data Structures Files Functions Variables Pages
moda_comprs.F
1  MODULE moda_comprs
2 
3 #ifndef MXCSB_H
4 #define MXCSB_H
5  USE modv_mxcsb
6 #endif
7 
8 #ifndef MXCDV_H
9 #define MXCDV_H
10  USE modv_mxcdv
11 #endif
12 
13 #ifndef MXLCC_H
14 #define MXLCC_H
15  USE modv_mxlcc
16 #endif
17 
18  INTEGER :: ncol
19 #ifdef DYNAMIC_ALLOCATION
20  INTEGER, ALLOCATABLE :: matx(:,:)
21  CHARACTER*(:), ALLOCATABLE :: catx(:,:)
22 #else
23  INTEGER :: matx(mxcdv,mxcsb)
24  CHARACTER*(MXLCC) :: catx(mxcdv,mxcsb)
25 #endif
26 
27  END MODULE
This module declares and initializes the MXCDV variable.
Definition: modv_MXCDV.F:16
This module declares and initializes the MXLCC variable.
Definition: modv_MXLCC.F:16
This module declares and initializes the MXCSB variable.
Definition: modv_MXCSB.F:16