/[MITgcm]/MITgcm/pkg/monitor/MONITOR.h
ViewVC logotype

Contents of /MITgcm/pkg/monitor/MONITOR.h

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


Revision 1.8 - (show annotations) (download)
Tue Sep 7 23:51:22 2004 UTC (19 years, 8 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint57m_post, checkpoint57g_pre, checkpoint57s_post, checkpoint58b_post, checkpoint57b_post, checkpoint57g_post, checkpoint56b_post, checkpoint57y_post, checkpoint57r_post, checkpoint57d_post, checkpoint57i_post, checkpoint59, checkpoint58, checkpoint55, checkpoint57, checkpoint56, checkpoint58f_post, checkpoint57n_post, checkpoint58d_post, checkpoint58a_post, checkpoint57z_post, checkpoint54f_post, checkpoint58y_post, checkpoint58t_post, checkpoint55i_post, checkpoint58m_post, checkpoint57l_post, checkpoint57t_post, checkpoint55c_post, checkpoint57v_post, checkpoint57f_post, checkpoint60, checkpoint61, checkpoint57a_post, checkpoint57h_pre, checkpoint58w_post, checkpoint57h_post, checkpoint57y_pre, checkpoint55g_post, checkpoint58o_post, checkpoint57c_post, checkpoint58p_post, checkpoint58q_post, checkpoint55d_post, checkpoint58e_post, mitgcm_mapl_00, checkpoint55d_pre, checkpoint57c_pre, checkpoint58r_post, checkpoint55j_post, checkpoint55h_post, checkpoint58n_post, checkpoint57e_post, checkpoint55b_post, checkpoint59q, checkpoint59p, checkpoint59r, checkpoint59e, checkpoint59d, checkpoint59g, checkpoint59f, checkpoint59a, checkpoint55f_post, checkpoint59c, checkpoint59b, checkpoint59m, checkpoint59l, checkpoint59o, checkpoint59n, checkpoint59i, checkpoint59h, checkpoint59k, checkpoint57p_post, checkpint57u_post, checkpoint57q_post, eckpoint57e_pre, checkpoint58k_post, checkpoint58v_post, checkpoint56a_post, checkpoint58l_post, checkpoint57h_done, checkpoint57j_post, checkpoint57f_pre, checkpoint61f, checkpoint58g_post, checkpoint58x_post, checkpoint61n, checkpoint59j, checkpoint58h_post, checkpoint56c_post, checkpoint58j_post, checkpoint57a_pre, checkpoint55a_post, checkpoint57o_post, checkpoint61q, checkpoint57k_post, checkpoint57w_post, checkpoint61e, checkpoint58i_post, checkpoint57x_post, checkpoint58c_post, checkpoint58u_post, checkpoint58s_post, checkpoint55e_post, checkpoint61g, checkpoint61d, checkpoint61b, checkpoint61c, checkpoint61a, checkpoint61o, checkpoint61l, checkpoint61m, checkpoint61j, checkpoint61k, checkpoint61h, checkpoint61i, checkpoint61r, checkpoint61s, checkpoint61p
Changes since 1.7: +7 -4 lines
File MIME type: text/plain
initialise mon_write_stdout=True to get grid and coriolis written out.

1 C $Header: /u/gcmpack/MITgcm/pkg/monitor/MONITOR.h,v 1.7 2004/09/07 21:32:10 edhill Exp $
2 C $Name: $
3 C
4
5 CBOP
6 C !ROUTINE: MONITOR.h
7
8 C !INTERFACE:
9 C #include "MONITOR.h"
10
11 C !DESCRIPTION:
12 C Contains the state (parameters) for the ``monitor'' package.
13 C
14 C Monitor routines (prefixed MON\_) provide a simple set of
15 C utilities for outputting useful runtime diagnostic
16 C information. They use a standard format so that the monitor output
17 C can be parsed offline to help in trouble shooting.
18 C
19 C Monitor setup params should be set through appropriate MON\_
20 C routines to ensure that changes are made in a thread-safe fashion.
21
22 CEOP
23
24 C-- Monitor head and tail strings
25 CHARACTER*(*) mon_head
26 PARAMETER ( mon_head = '%MON' )
27 CHARACTER*(*) mon_foot_min
28 PARAMETER ( mon_foot_min = '_min' )
29 CHARACTER*(*) mon_foot_max
30 PARAMETER ( mon_foot_max = '_max' )
31 CHARACTER*(*) mon_foot_sd
32 PARAMETER ( mon_foot_sd = '_sd' )
33 CHARACTER*(*) mon_foot_mean
34 PARAMETER ( mon_foot_mean = '_mean' )
35 CHARACTER*(*) mon_foot_volint
36 PARAMETER ( mon_foot_volint = '_volint' )
37 CHARACTER*(*) mon_foot_volmean
38 PARAMETER ( mon_foot_volmean = '_volmean' )
39 CHARACTER*(*) mon_foot_del2
40 PARAMETER ( mon_foot_del2 = '_del2' )
41 CHARACTER*(*) mon_foot_vol
42 PARAMETER ( mon_foot_vol = '_vol' )
43 CHARACTER*(*) mon_string_none
44 PARAMETER ( mon_string_none = 'NONE')
45
46 C-- COMMON /MON_I/ Monitor integer variables
47 C mon_ioUnit - Used to specify the output unit for monitor IO.
48 C mon_prefL - Prefix length of current mon_ prefix
49 COMMON /MON_I/ mon_ioUnit, mon_prefL
50 INTEGER mon_ioUnit
51 INTEGER mon_prefL
52
53 C-- COMMON /MON_C/ Monitor character variables
54 C mon_pref - Prefix used for monitor output
55 COMMON /MON_C/ mon_pref
56 CHARACTER*(MAX_LEN_MBUF) mon_pref
57
58 C-- COMMON /MON_L/ Monitor logical variables
59 C mon_overrideStop - Allow code to continue even if model state is
60 C heading out of bounds
61 C mon_write_stdout - hold True when writing monitor to standard output
62 C mon_write_mnc - hold True when writing monitor to MNC file
63 COMMON /MON_L/ mon_overrideStop,
64 & mon_write_stdout, mon_write_mnc
65 LOGICAL mon_overrideStop
66 LOGICAL mon_write_stdout, mon_write_mnc
67
68 C File names and time steps
69 C mon_fname :: monitor file group name
70 COMMON /MON_F/
71 & mon_fname
72 CHARACTER*(MAX_LEN_MBUF) mon_fname
73
74 C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
75
76 CEH3 ;;; Local Variables: ***
77 CEH3 ;;; mode:fortran ***
78 CEH3 ;;; End: ***

  ViewVC Help
Powered by ViewVC 1.1.22