]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ISAJET/code/ctxc2i.F
Update rawdata format for trigger (Christian)
[u/mrichter/AliRoot.git] / ISAJET / code / ctxc2i.F
CommitLineData
0795afa3 1#include "isajet/pilot.h"
2 SUBROUTINE CTXC2I(CVAL,IVAL,NSIZE)
3C-----------------------------------------------------------------------
4C Convert character variable CVAL to integer array IVAL
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 IVAL(I)=ICHAR(CVAL(I:I))
15C
16 RETURN
17 END