Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
pygrvv.f
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file pygrvv.f
1 
2 C*********************************************************************
3 
4 C...PYGRVV
5 C...Auxiliary for the GRV 94 parton distribution functions
6 C...for u and d valence and d-u sea.
7 C...Authors: M. Glueck, E. Reya and A. Vogt.
8 
9  FUNCTION pygrvv (X, N, AK, BK, A, B, C, D)
10 
11 C...Double precision declaration.
12  IMPLICIT DOUBLE PRECISION (a - z)
13 
14 C...Evaluation.
15  dx = sqrt(x)
16  pygrvv = n * x**ak * (1d0+ a*x**bk + x * (b + c*dx)) *
17  & (1d0- x)**d
18 
19  RETURN
20  END