Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
pyfint.f
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file pyfint.f
1 
2 
3 
4 
5 
6 C*********************************************************************
7 
8 C...PYFINT
9 C...Auxiliary routine to PYPOLE for SUSY Higgs calculations.
10 
11  FUNCTION pyfint(A,B,C)
12 
13 C...Double precision and integer declarations.
14  IMPLICIT DOUBLE PRECISION(a-h, o-z)
15  IMPLICIT INTEGER(i-n)
16  INTEGER pyk,pychge,pycomp
17 C...Commonblock.
18  common/pyints/xxm(20)
19  SAVE/pyints/
20 
21 C...Local variables.
22  EXTERNAL pyfisb
23  DOUBLE PRECISION pyfisb
24 
25  xxm(1)=a
26  xxm(2)=b
27  xxm(3)=c
28  xlo=0d0
29  xhi=1d0
30  pyfint = pygaus(pyfisb,xlo,xhi,1d-3)
31 
32  RETURN
33  END