Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
pyrvs.f
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file pyrvs.f
1 
2 C*********************************************************************
3 
4 C...PYRVS
5 C...Interference function
6 
7  FUNCTION pyrvs(X,Y,M1,W1,M2,W2)
8 
9  IMPLICIT NONE
10  DOUBLE PRECISION x, y, pyrvs, pyrvr, m1, m2, w1, w2
11  pyrvs = pyrvr(x,m1,w1)*pyrvr(y,m2,w2)*((x-m1**2)*(y-m2**2)
12  & +w1*w2*m1*m2)
13  RETURN
14  END