]> git.uio.no Git - u/mrichter/AliRoot.git/blame - GEANT321/gheisha/normal.F
Proper deletion of arrays, deletion of unused variables (thanks to Rene Brun)
[u/mrichter/AliRoot.git] / GEANT321 / gheisha / normal.F
CommitLineData
fe4da5cc 1*
2* $Id$
3*
4* $Log$
5* Revision 1.1.1.1 1995/10/24 10:20:58 cernlib
6* Geant
7*
8*
9#include "geant321/pilot.h"
10*CMZ : 3.21/02 29/03/94 15.41.38 by S.Giani
11*-- Author :
12 SUBROUTINE NORMAL(RAN)
13C
14C *** NVE 14-APR-1988 CERN GENEVA ***
15C
16C ORIGIN : H.FESEFELDT (27-OCT-1983)
17C
18 DIMENSION RNDM(12)
19 RAN=-6.
20 CALL GRNDM(RNDM,12)
21 DO 1 I=1,12
22 RAN=RAN+RNDM(I)
23 1 CONTINUE
24 RETURN
25 END