/[MITgcm]/MITgcm/pkg/compon_communic/mitcplr_real2char.F
ViewVC logotype

Annotation of /MITgcm/pkg/compon_communic/mitcplr_real2char.F

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


Revision 1.2 - (hide annotations) (download)
Mon Oct 8 23:58:22 2007 UTC (16 years, 7 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint60, checkpoint61, checkpoint59q, checkpoint59p, checkpoint59r, checkpoint59m, checkpoint59l, checkpoint59o, checkpoint59n, checkpoint59i, checkpoint59k, checkpoint59j, checkpoint61f, checkpoint61g, checkpoint61d, checkpoint61e, checkpoint61b, checkpoint61c, checkpoint61a, checkpoint61n, checkpoint61o, checkpoint61l, checkpoint61m, checkpoint61j, checkpoint61k, checkpoint61h, checkpoint61i, checkpoint61t, checkpoint61u, checkpoint61r, checkpoint61s, checkpoint61p, checkpoint61q
Changes since 1.1: +3 -0 lines
add missing cvs $Header:$ or $Name:$

1 jmc 1.2 C $Header: $
2     C $Name: $
3    
4 jmc 1.1 !=======================================================================
5     subroutine mitcplr_real2char( rarg, carg )
6     implicit none
7     ! Predefined constants/arrays
8     #include "CPLR_SIG.h"
9     ! Arguments
10     character*(MAXLEN_COMP_NAME) carg
11     real*4 rarg(MAXLEN_COMP_NAME)
12     ! Local
13     integer j
14     ! ------------------------------------------------------------------
15    
16     ! Convert the integer array to characters
17     do j=1,MAXLEN_COMP_NAME
18     carg(j:j) = char( int( 0.5+rarg(j) ) )
19     enddo
20    
21     ! ------------------------------------------------------------------
22     return
23     end
24     !=======================================================================

  ViewVC Help
Powered by ViewVC 1.1.22