/[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.9 - (hide annotations) (download)
Sat Sep 4 18:19:21 2004 UTC (19 years, 9 months ago) by edhill
Branch: MAIN
CVS Tags: checkpoint57m_post, checkpoint57g_pre, checkpoint57s_post, checkpoint57b_post, checkpoint57g_post, checkpoint56b_post, checkpoint57y_post, checkpoint57r_post, checkpoint57d_post, checkpoint57i_post, checkpoint58, checkpoint55, checkpoint57, checkpoint56, checkpoint57n_post, checkpoint58a_post, checkpoint57z_post, checkpoint54f_post, checkpoint55i_post, checkpoint57l_post, checkpoint57t_post, checkpoint55c_post, checkpoint57v_post, checkpoint57f_post, checkpoint57a_post, checkpoint57h_pre, checkpoint57h_post, checkpoint57y_pre, checkpoint55g_post, checkpoint57c_post, checkpoint55d_post, checkpoint55d_pre, checkpoint57c_pre, checkpoint55j_post, checkpoint55h_post, checkpoint57e_post, checkpoint55b_post, checkpoint55f_post, checkpoint57p_post, checkpint57u_post, checkpoint57q_post, eckpoint57e_pre, checkpoint56a_post, checkpoint57h_done, checkpoint57j_post, checkpoint57f_pre, checkpoint56c_post, checkpoint57a_pre, checkpoint55a_post, checkpoint57o_post, checkpoint57k_post, checkpoint57w_post, checkpoint57x_post, checkpoint55e_post
Changes since 1.8: +42 -34 lines
 o add header info to both the NetCDF output and the model stdout
   - requested by Steph

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

  ViewVC Help
Powered by ViewVC 1.1.22