]> git.uio.no Git - u/mrichter/AliRoot.git/blame - GEANT321/neutron/getene.F
Bugfix in AliPoints2Memory
[u/mrichter/AliRoot.git] / GEANT321 / neutron / getene.F
CommitLineData
fe4da5cc 1*
2* $Id$
3*
4* $Log$
5* Revision 1.1.1.1 1995/10/24 10:21:56 cernlib
6* Geant
7*
8*
9#include "geant321/pilot.h"
10*CMZ : 3.21/04 23/02/95 14.46.01 by S.Giani
11*-- Author :
12 SUBROUTINE GETENE(EN,D1,D2,N)
13C sample N times secondary energy distribution and
14C store in ENE(*)
15#include "geant321/mconst.inc"
16#include "geant321/mnutrn.inc"
17C
18 DIMENSION D1(*),D2(*)
19C
20 DO 10 I=1,N
21 CALL SECEGY(EX,D1,EN,D2)
22 ENE(I) = EX
23 10 CONTINUE
24 RETURN
25 END
26