]> git.uio.no Git - u/mrichter/AliRoot.git/blame - GEANT321/giopa/grend.F
Bugfix in AliPoints2Memory
[u/mrichter/AliRoot.git] / GEANT321 / giopa / grend.F
CommitLineData
fe4da5cc 1*
2* $Id$
3*
4* $Log$
5* Revision 1.1.1.1 1995/10/24 10:21:17 cernlib
6* Geant
7*
8*
9#include "geant321/pilot.h"
10*CMZ : 3.21/02 29/03/94 15.41.20 by S.Giani
11*-- Author :
12 SUBROUTINE GREND (LUN)
13C.
14C. ******************************************************************
15C. * *
16C. * Routine to close an RZ file *
17C. * *
18C. * CHDIR Top directory name of the file *
19C. * *
20C. * ==>Called by : <USER> *
21C. * Author R.Brun ********* *
22C. * *
23C. ******************************************************************
24C.
25 CHARACTER*5 CHDIR
26C.
27C. ------------------------------------------------------------------
28C.
29 IF(LUN.LT.10) THEN
30 WRITE(CHDIR,'(''LUN'',I1)') LUN
31 ELSE
32 WRITE(CHDIR,'(''LUN'',I2)') LUN
33 ENDIF
34 CALL RZEND(CHDIR)
35C
36 END