/[MITgcm]/MITgcm/pkg/monitor/mon_printstats_rl.F
ViewVC logotype

Contents of /MITgcm/pkg/monitor/mon_printstats_rl.F

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.10 - (show annotations) (download)
Sat Jan 16 22:27:19 2010 UTC (14 years, 4 months ago) by jmc
Branch: MAIN
Changes since 1.9: +8 -12 lines
change mon_printstats_rl.F & mon_stats_rl.F (were similar to mon_writestats_rl
 & mon_calc_stats_rl) to be the RL pendant to mon_printstats_rs & mon_stats_rs.

1 C $Header: /u/gcmpack/MITgcm/pkg/monitor/mon_printstats_rs.F,v 1.8 2004/04/03 21:17:10 edhill Exp $
2 C $Name: $
3
4 #include "MONITOR_OPTIONS.h"
5
6 C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
7 CBOP
8 C !ROUTINE: MON_PRINTSTATS_RL
9
10 C !INTERFACE:
11 SUBROUTINE MON_PRINTSTATS_RL(
12 I myNr, arr, arrName,
13 I myThid )
14
15 C !DESCRIPTION:
16 C Prints to STDOUT the bare statistics of global array "\_RL arr"
17 C with label "arrName".
18
19 C !USES:
20 IMPLICIT NONE
21 #include "SIZE.h"
22 #include "EEPARAMS.h"
23 #include "MONITOR.h"
24
25 C !INPUT PARAMETERS:
26 INTEGER myNr
27 _RL arr(1-OLx:sNx+OLx,1-OLy:sNy+OLy,myNr,nSx,nSy)
28 CHARACTER*(*) arrName
29 INTEGER myThid
30 CEOP
31
32 C !LOCAL VARIABLES:
33 _RL theMin
34 _RL theMax
35 _RL theMean
36 _RL theSD
37
38 CALL MON_STATS_RL(
39 I myNr, arr,
40 O theMin,theMax,theMean,theSD,
41 I myThid )
42
43 CALL MON_OUT_RL( arrName, theMax, mon_foot_max ,myThid)
44 CALL MON_OUT_RL( arrName, theMin, mon_foot_min ,myThid)
45 CALL MON_OUT_RL( arrName, theMean, mon_foot_mean ,myThid)
46 CALL MON_OUT_RL( arrName, theSD, mon_foot_sd ,myThid)
47
48 RETURN
49 END

  ViewVC Help
Powered by ViewVC 1.1.22