]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ISAJET/code/ctxi2c.F
New version of the TPC preprocessor. New preprocessor configuration directory (Haavard)
[u/mrichter/AliRoot.git] / ISAJET / code / ctxi2c.F
CommitLineData
0795afa3 1#include "isajet/pilot.h"
2 SUBROUTINE CTXI2C(IVAL,CVAL,NSIZE)
3C-----------------------------------------------------------------------
4C Convert integer array IVAL to character variable CVAL
5C-----------------------------------------------------------------------
6#if defined(CERNLIB_IMPNONE)
7 IMPLICIT NONE
8#endif
9 CHARACTER*(*) CVAL
10 INTEGER I,NSIZE
11 INTEGER IVAL(NSIZE)
12C
13 DO 100 I=1,NSIZE
14100 CVAL(I:I)=CHAR(IVAL(I))
15C
16 RETURN
17 END