]> git.uio.no Git - u/mrichter/AliRoot.git/blame - GEANT321/peanut/fradnc.F
Bugfix in AliPoints2Memory
[u/mrichter/AliRoot.git] / GEANT321 / peanut / fradnc.F
CommitLineData
fe4da5cc 1*
2* $Id$
3*
4* $Log$
5* Revision 1.1.1.1 1995/10/24 10:22:01 cernlib
6* Geant
7*
8*
9#include "geant321/pilot.h"
10*CMZ : 3.21/02 29/03/94 15.41.46 by S.Giani
11*-- Author :
12*$ CREATE FRADNC.FOR
13*COPY FRADNC
14*
15*=== fradnc ===========================================================*
16*
17 FUNCTION FRADNC (RHO)
18
19#include "geant321/dblprc.inc"
20#include "geant321/dimpar.inc"
21#include "geant321/iounit.inc"
22*
23#include "geant321/nucgeo.inc"
24*
25#include "geant321/nucstf.inc"
26*
27 IF ( RHO .GE. RHOCOR ) THEN
28 FRADNC = RACORE (RHO)
29 ELSE IF ( RHO .GE. RHOSKN ) THEN
30 FRADNC = RASKIN (RHO)
31 ELSE IF ( RHO .GT. 0.D+00 ) THEN
32 FRADNC = RAHALO (RHO)
33 ELSE
34 FRADNC = RADTOT
35 END IF
36 RETURN
37 END