]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PDF/spdf/grvfqbp.F
(martin) pt vs eta correction matrix calculation macro using CorrectionMatrix2D class.
[u/mrichter/AliRoot.git] / PDF / spdf / grvfqbp.F
1 *
2 * $Id$
3 *
4 * $Log$
5 * Revision 1.1.1.2  1996/10/30 08:28:37  cernlib
6 * Version 7.04
7 *
8 * Revision 1.1.1.1  1996/04/12 15:29:23  plothow
9 * Version 7.01
10 *
11 *
12 #include "pdf/pilot.h"
13        FUNCTION GRVFQBP (X, S, ST, AL, BE, AK, AG, B, D, E, ES)
14        IMPLICIT REAL (A - Z)
15        DX = SQRT (X)
16        LX = ALOG (1./X)
17        IF (S .LE. ST) THEN
18           GRVFQBP = 0.0
19        ELSE
20           GRVFQBP = (S-ST)**AL / LX**AK * (1.+ AG*DX + B*X) * (1.- X)**D
21      1           * EXP (-E + SQRT (ES * S**BE * LX))
22        END IF
23        RETURN
24        END