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.
fbaccdata.F90 in branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS/src – NEMO

source: branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS/src/fbaccdata.F90 @ 2945

Last change on this file since 2945 was 2945, checked in by djlea, 13 years ago

Move OBSTOOLS code to src directory

File size: 451 bytes
Line 
1MODULE fbaccdata
2   INTEGER, DIMENSION(:,:,:,:), ALLOCATABLE :: inum
3   REAL, DIMENSION(:,:,:,:), ALLOCATABLE :: zmean,zrms,zsdev
4   INTEGER, PARAMETER :: maxvars = 10
5   REAL, DIMENSION(maxvars) :: zcheck
6   REAL, DIMENSION(maxvars) :: zhistmax, zhistmin, zhiststep
7   TYPE histtype
8      INTEGER :: npoints
9      INTEGER, POINTER, DIMENSION(:,:,:,:) :: nhist
10   END TYPE histtype
11   TYPE(histtype), DIMENSION(maxvars) :: hist
12
13END MODULE fbaccdata
14
Note: See TracBrowser for help on using the repository browser.