]> git.uio.no Git - u/mrichter/AliRoot.git/blame - GEANT321/gcons/gfcoul.F
Some function moved to AliZDC
[u/mrichter/AliRoot.git] / GEANT321 / gcons / gfcoul.F
CommitLineData
fe4da5cc 1*
2* $Id$
3*
4* $Log$
5* Revision 1.1.1.1 1995/10/24 10:20:13 cernlib
6* Geant
7*
8*
9#include "geant321/pilot.h"
10*CMZ : 3.21/02 29/03/94 15.41.19 by S.Giani
11*-- Author :
12 FUNCTION GFCOUL(Z)
13C.
14C. ******************************************************************
15C. * *
16C. * Compute Coulomb correction for pair production and Brem *
17C. * REFERENCE : EGS MANUAL SLAC 210 - UC32 - JUNE 78 *
18C. * FORMULA 2.7.17 *
19C. * *
20C. * ==>Called by : GSMIXT *
21C. * Author M.Maire ********* *
22C. * *
23C. ******************************************************************
24C.
25 PARAMETER (ALPHA = 7.29927E-03)
26C
27 AZ2 = (ALPHA*Z)**2
28 AZ4 = AZ2 * AZ2
29 FP = ( 0.0083*AZ4 + 0.20206 + 1./(1.+AZ2) ) * AZ2
30 FM = ( 0.0020*AZ4 + 0.0369 ) * AZ4
31 GFCOUL = FP - FM
32 END