]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MINICERN/packlib/kernlib/kerngen/unix/lnxgs/irndm.F
Bugfix in AliPoints2Memory
[u/mrichter/AliRoot.git] / MINICERN / packlib / kernlib / kerngen / unix / lnxgs / irndm.F
1 *
2 * $Id$
3 *
4 * $Log$
5 * Revision 1.1.1.1  1996/02/15 17:50:07  mclareni
6 * Kernlib
7 *
8 *
9 #include "kerngen/pilot.h"
10         FUNCTION IRNDM(ISEEK)
11         COMMON /MCGN/ MCGN
12
13 C--       Integer random number
14       MCGN  = MCGN * 69069
15       IRNDM = ISHFT (MCGN,-1)
16       RETURN
17         END