Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
pylamf.f
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file pylamf.f
1 
2 C*********************************************************************
3 
4 C...PYLAMF
5 C...The standard lambda function.
6 
7  FUNCTION pylamf(X,Y,Z)
8 
9 C...Double precision and integer declarations.
10  IMPLICIT DOUBLE PRECISION(a-h, o-z)
11  IMPLICIT INTEGER(i-n)
12  INTEGER pyk,pychge,pycomp
13 
14 C...Local variables.
15  DOUBLE PRECISION pylamf,x,y,z
16 
17  pylamf=(x-(y+z))**2-4d0*y*z
18  IF(pylamf.LT.0d0) pylamf=0d0
19 
20  RETURN
21  END