]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ISAJET/code/evolms.F
Extracting PHOS and EMCAL trackers from the correspondig reconstructors (Yu.Belikov)
[u/mrichter/AliRoot.git] / ISAJET / code / evolms.F
CommitLineData
0795afa3 1#include "isajet/pilot.h"
2 FUNCTION EVOLMS(J,FUDGE)
3C----------------------------------------------------------------------
4C-
5C- Purpose and Methods :
6C- Set evolution mass scale for parton J
7C-
8C- Returned value : maximum mass
9C-
10C- Inputs :
11C- J = index to PJSET array
12C- FUDGE= fudge factor
13C-
14C- Created 16-AUG-1991 Serban D. Protopopescu
15C-
16C----------------------------------------------------------------------
17#if defined(CERNLIB_IMPNONE)
18 IMPLICIT NONE
19#endif
20 REAL EVOLMS,FUDGE
21 INTEGER J
22#include "isajet/limevl.inc"
23#include "isajet/jetset.inc"
24#include "isajet/jetpar.inc"
25C----------------------------------------------------------------------
26C
27 IF ( USELIM ) THEN
28 EVOLMS=SQRT(PJSET(1,J)**2+PJSET(2,J)**2)*CONCUT
29 ELSE
30 EVOLMS=FUDGE*SQRT(QSQ)
31 ENDIF
32 999 RETURN
33 END