/[MITgcm]/MITgcm/pkg/mdsio/mdsio_write_rl_vec.F
ViewVC logotype

Annotation of /MITgcm/pkg/mdsio/mdsio_write_rl_vec.F

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


Revision 1.2.6.1 - (hide annotations) (download)
Tue Jul 8 15:20:59 2003 UTC (20 years, 11 months ago) by heimbach
Branch: ecco-branch
CVS Tags: ecco_c51_e34d, ecco_c51_e34e, ecco_c51_e34f, ecco_c51_e34g, ecco_c51_e34c
Changes since 1.2: +8 -3 lines
o introducing integer flag debugLevel
o introducing pathname variable mdsioLocalDir for mdsio

1 heimbach 1.2.6.1 C $Header: /u/gcmpack/MITgcm/pkg/mdsio/mdsio_write_rl_vec.F,v 1.2 2001/09/13 17:43:56 adcroft Exp $
2 adcroft 1.2 C $Name: $
3 adcroft 1.1
4     #include "MDSIO_OPTIONS.h"
5    
6     subroutine MDS_WRITE_RL_VEC( dUnit, irec, narr, arr, mythid )
7     C IN:
8     C dunit integer - 'Opened' I/O channel
9     C irec integer - record number to write
10     C narr integer - dimension off array "arr"
11     C arr _RL - model tiled vector
12     C mythid integer - thread id
13     C
14     C Created: 03/29/99 eckert@mit.edu + adcroft@mit.edu
15    
16     implicit none
17    
18     #include "EEPARAMS.h"
19 heimbach 1.2.6.1 #include "SIZE.h"
20     #include "PARAMS.h"
21 adcroft 1.1
22     C Arguments
23     integer dUnit
24     integer irec
25     integer narr
26     integer mythid
27     _RL arr(narr)
28     C Local
29     character*(max_len_mbuf) msgbuf
30     C ------------------------------------------------------------------
31 heimbach 1.2.6.1 if ( debugLevel .GE. debLevA ) then
32     write(msgbuf,'(a,i9.8,2x,i9.8)')
33 adcroft 1.1 & ' MDS_WRITE_RL_VEC: irec = ',irec,narr
34 adcroft 1.2 cab change start
35     #ifndef ALLOW_FLT
36 heimbach 1.2.6.1 call print_message( msgbuf, standardmessageunit,
37 adcroft 1.1 & SQUEEZE_RIGHT , mythid)
38 adcroft 1.2 #endif
39     can change end
40 heimbach 1.2.6.1 endif
41    
42 adcroft 1.1 write(dUnit,rec=irec) arr
43     C ------------------------------------------------------------------
44     return
45     end

  ViewVC Help
Powered by ViewVC 1.1.22