/[MITgcm]/MITgcm/eesupp/src/eeintro_msg.F
ViewVC logotype

Contents of /MITgcm/eesupp/src/eeintro_msg.F

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


Revision 1.8 - (show annotations) (download)
Sat Mar 27 03:51:51 2004 UTC (20 years, 3 months ago) by edhill
Branch: MAIN
CVS Tags: checkpoint54d_post, checkpoint54e_post, checkpoint54, checkpoint53, checkpoint53d_post, checkpoint54b_post, checkpoint52m_post, checkpoint54a_pre, checkpoint53c_post, checkpoint54a_post, checkpoint53a_post, checkpoint53g_post, checkpoint53f_post, checkpoint52n_post, checkpoint53b_pre, checkpoint53b_post, checkpoint53d_pre, checkpoint54c_post
Changes since 1.7: +2 -2 lines
 o cleanup comments (NO CODE CHANGES) in eesupp for protex
 o the "api reference" framework now builds documentation for:
     eesupp, pkg/generic_advdiff, and pkg/gmredi
 o remove mnc from the default gfd in pkg_groups pending
     further testing on systems where NetCDF is not installed

1 C $Header: /u/gcmpack/MITgcm/eesupp/src/eeintro_msg.F,v 1.7 2001/09/27 18:13:40 adcroft Exp $
2
3 #include "CPP_EEOPTIONS.h"
4
5 CBOP
6 C !ROUTINE: EEINTRO_MSG
7
8 C !INTERFACE:
9 SUBROUTINE EEINTRO_MSG
10 IMPLICIT NONE
11
12 C !DESCRIPTION:
13 C *==========================================================
14 C | SUBROUTINE EEINTRO\_MSG
15 C | o Write basic WRAPPER introductory message.
16 C *==========================================================
17 C | This routine could be customised for different platforms.
18 C | Output includes which checkpoint of the code is running.
19 C | The routine doesnt currently report the user id or
20 C | machine name correctly.
21 C *==========================================================
22
23 C !USES:
24 C === Global data ===
25 #include "SIZE.h"
26 #include "EEPARAMS.h"
27 #include "EESUPPORT.h"
28
29 C !LOCAL VARIABLES:
30 C === Local variables ===
31 CHARACTER*(MAX_LEN_MBUF) msgBuf
32 CEOP
33
34
35 WRITE(msgBuf,'(A)') ' '
36 CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
37 & SQUEEZE_RIGHT , 1)
38 WRITE(msgBuf,'(A)')
39 &'// ======================================================'
40 CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
41 & SQUEEZE_RIGHT , 1)
42 WRITE(msgBuf,'(A)') '// MITgcm UV'
43 CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
44 & SQUEEZE_RIGHT , 1)
45 WRITE(msgBuf,'(A)') '// ========='
46 CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
47 & SQUEEZE_RIGHT , 1)
48 WRITE(msgBuf,'(A)')
49 &'// ======================================================'
50 CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
51 & SQUEEZE_RIGHT , 1)
52 WRITE(msgBuf,'(A)') '// execution environment starting up...'
53 CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
54 & SQUEEZE_RIGHT , 1)
55 WRITE(msgBuf,'(A)') '// Run starting Wed Apr 1 14:19:48 1998'
56 CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
57 & SQUEEZE_RIGHT , 1)
58 WRITE(msgBuf,'(A)') '// on melville.lcs.mit.edu'
59 CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
60 & SQUEEZE_RIGHT , 1)
61 WRITE(msgBuf,'(A)') '// account cnh'
62 CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
63 & SQUEEZE_RIGHT , 1)
64 WRITE(msgBuf,'(A)')
65 &'// MITgcm UV Release: $Name: $'
66 CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
67 & SQUEEZE_RIGHT , 1)
68 WRITE(msgBuf,'(A)') ' '
69 CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
70 & SQUEEZE_RIGHT , 1)
71 C
72 RETURN
73 END

  ViewVC Help
Powered by ViewVC 1.1.22