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

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

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


Revision 1.11 - (hide annotations) (download)
Sun Sep 23 22:48:04 2007 UTC (16 years, 9 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint62v, checkpoint62u, checkpoint62t, checkpoint65z, checkpoint65x, checkpoint65y, checkpoint65r, checkpoint65s, checkpoint65p, checkpoint65q, checkpoint65v, checkpoint65w, checkpoint65t, checkpoint65u, checkpoint65j, checkpoint65k, checkpoint65h, checkpoint65i, checkpoint65n, checkpoint65l, checkpoint65m, checkpoint65b, checkpoint65c, checkpoint65a, checkpoint65f, checkpoint65g, checkpoint65d, checkpoint65e, checkpoint62c, checkpoint62s, checkpoint62r, checkpoint62q, checkpoint62p, checkpoint62a, checkpoint62g, checkpoint62f, checkpoint62e, checkpoint62d, checkpoint62k, checkpoint62j, checkpoint62i, checkpoint62h, checkpoint62o, checkpoint62n, checkpoint62m, checkpoint62l, checkpoint62w, checkpoint62z, checkpoint62y, checkpoint62x, checkpoint63g, checkpoint64, checkpoint65, checkpoint60, checkpoint61, checkpoint62, checkpoint63, checkpoint66g, checkpoint66f, checkpoint66e, checkpoint66d, checkpoint66c, checkpoint66b, checkpoint66a, checkpoint66o, checkpoint66n, checkpoint66m, checkpoint66l, checkpoint66k, checkpoint66j, checkpoint66i, checkpoint66h, checkpoint63p, checkpoint63q, checkpoint63r, checkpoint63s, checkpoint63l, checkpoint63m, checkpoint63n, checkpoint63o, checkpoint63h, checkpoint63i, checkpoint63j, checkpoint63k, checkpoint63d, checkpoint63e, checkpoint63f, checkpoint63a, checkpoint63b, checkpoint63c, checkpoint65o, checkpoint59q, checkpoint59p, checkpoint59r, checkpoint59m, checkpoint59l, checkpoint59o, checkpoint59n, checkpoint59i, checkpoint59h, checkpoint59k, checkpoint62b, checkpoint64y, checkpoint64x, checkpoint64z, checkpoint64q, checkpoint64p, checkpoint64s, checkpoint64r, checkpoint64u, checkpoint64t, checkpoint64w, checkpoint64v, checkpoint64i, checkpoint64h, checkpoint64k, checkpoint64j, checkpoint64m, checkpoint64l, checkpoint64o, checkpoint64n, checkpoint64a, checkpoint64c, checkpoint64b, checkpoint64e, checkpoint64d, checkpoint64g, checkpoint64f, checkpoint61f, checkpoint61n, checkpoint59j, checkpoint61q, checkpoint61e, checkpoint61g, checkpoint61d, checkpoint61b, checkpoint61c, checkpoint61a, checkpoint61o, checkpoint61l, checkpoint61m, checkpoint61j, checkpoint61k, checkpoint61h, checkpoint61i, checkpoint61v, checkpoint61w, checkpoint61t, checkpoint61u, checkpoint61r, checkpoint61s, checkpoint61p, checkpoint61z, checkpoint61x, checkpoint61y, HEAD
Changes since 1.10: +7 -6 lines
add cvs "$Name:"

1 jmc 1.11 C $Header: $
2     C $Name: $
3 cnh 1.1
4     #include "CPP_EEOPTIONS.h"
5    
6 cnh 1.6 CBOP
7     C !ROUTINE: EEINTRO_MSG
8    
9 edhill 1.9 C !INTERFACE:
10 cnh 1.1 SUBROUTINE EEINTRO_MSG
11 adcroft 1.5 IMPLICIT NONE
12 cnh 1.1
13 cnh 1.6 C !DESCRIPTION:
14 edhill 1.9 C Write basic WRAPPER introductory message. This routine could be
15     C customised for different platforms. Output includes which
16     C checkpoint of the code is running. The routine doesnt currently
17     C report the user id or machine name correctly.
18 cnh 1.6
19     C !USES:
20 edhill 1.10 #include "BUILD_INFO.h"
21 cnh 1.1 #include "SIZE.h"
22     #include "EEPARAMS.h"
23     #include "EESUPPORT.h"
24    
25 cnh 1.6 C !LOCAL VARIABLES:
26 cnh 1.1 CHARACTER*(MAX_LEN_MBUF) msgBuf
27 cnh 1.6 CEOP
28 cnh 1.1
29     WRITE(msgBuf,'(A)') ' '
30     CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
31 edhill 1.9 & SQUEEZE_RIGHT , 1)
32 jmc 1.11 WRITE(msgBuf,'(A)')
33 edhill 1.9 & '// ======================================================'
34 cnh 1.1 CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
35 edhill 1.9 & SQUEEZE_RIGHT , 1)
36 cnh 1.1 WRITE(msgBuf,'(A)') '// MITgcm UV'
37     CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
38 edhill 1.9 & SQUEEZE_RIGHT , 1)
39 cnh 1.1 WRITE(msgBuf,'(A)') '// ========='
40     CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
41 edhill 1.9 & SQUEEZE_RIGHT , 1)
42 jmc 1.11 WRITE(msgBuf,'(A)')
43 edhill 1.9 & '// ======================================================'
44 cnh 1.1 CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
45 edhill 1.9 & SQUEEZE_RIGHT , 1)
46 cnh 1.1 WRITE(msgBuf,'(A)') '// execution environment starting up...'
47     CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
48 edhill 1.9 & SQUEEZE_RIGHT , 1)
49     WRITE(msgBuf,'(A)') ' '
50 cnh 1.1 CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
51 edhill 1.9 & SQUEEZE_RIGHT , 1)
52 jmc 1.11
53 edhill 1.9 #ifdef THISVER
54 jmc 1.11 WRITE(msgBuf,'(2A)') '// MITgcmUV version: ',
55 edhill 1.9 & THISVER
56     CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
57     & SQUEEZE_RIGHT , 1)
58     #endif
59     #ifdef THISUSER
60     WRITE(msgBuf,'(2A)') '// Build user: ',
61     & THISUSER
62     CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
63     & SQUEEZE_RIGHT , 1)
64     #endif
65     #ifdef THISHOST
66     WRITE(msgBuf,'(2A)') '// Build host: ',
67     & THISHOST
68     CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
69     & SQUEEZE_RIGHT , 1)
70     #endif
71     #ifdef THISDATE
72 jmc 1.11 WRITE(msgBuf,'(2A)') '// Build date: ',
73 edhill 1.9 & THISDATE
74 cnh 1.1 CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
75 edhill 1.9 & SQUEEZE_RIGHT , 1)
76     #endif
77    
78 cnh 1.1 WRITE(msgBuf,'(A)') ' '
79     CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
80 edhill 1.9 & SQUEEZE_RIGHT , 1)
81 cnh 1.1 C
82     RETURN
83     END

  ViewVC Help
Powered by ViewVC 1.1.22