EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
fw.F
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file fw.F
1 *
2  FUNCTION fw (X, S, AL, BE, AK, BK, A, B, C, D, E, ES)
3  IMPLICIT DOUBLE PRECISION (a - z)
4  lx = dlog(1./x)
5  fw = (x**ak * (a + x * (b + x*c)) * lx**bk + s**al
6  1 * dexp(-e + dsqrt(es * s**be * lx))) * (1.- x)**d
7  RETURN
8  END