Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
pyfisb.f
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file pyfisb.f
1 
2 C*********************************************************************
3 
4 C...PYFISB
5 C...Auxiliary routine to PYFINT for SUSY Higgs calculations.
6 
7  FUNCTION pyfisb(X)
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 C...Commonblock.
14  common/pyints/xxm(20)
15  SAVE/pyints/
16 
17  pyfisb = log(abs(x*xxm(2)+(1-x)*xxm(3)-x*(1-x)*xxm(1))/
18  &(x*(xxm(2)-xxm(3))+xxm(3)))
19 
20  RETURN
21  END