Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
pytbhs.f
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file pytbhs.f
1 C=====================================================================
2 C ************* FUNCTION SCALAR PRODUCTS *************************
3  DOUBLE PRECISION FUNCTION pytbhs(A,B)
4  IMPLICIT DOUBLE PRECISION(a-h, o-z)
5  IMPLICIT INTEGER(i-n)
6  dimension a(4),b(4)
7  dum=a(4)*b(4)
8  DO 100 id=1,3
9  dum=dum-a(id)*b(id)
10  100 CONTINUE
11  pytbhs=dum
12  RETURN
13  END