| 1 |
C $Header: /u/gcmpack/models/MITgcmUV/eesupp/src/eeintro_msg.F,v 1.6 2001/09/21 03:54:34 cnh 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 |