JHUGen MELA  v2.4.1
Matrix element calculations as used in JHUGen. MELA is an important tool that was used for the Higgs boson discovery and for precise measurements of its structure and interactions. Please see the website https://spin.pha.jhu.edu/ and papers cited there for more details, and kindly cite those papers when using this code.
Data Types | Functions/Subroutines
hto_linear_comb_c Module Reference

Data Types

interface  operator(.lcc.)
 

Functions/Subroutines

real *8 function, dimension(2) lcc (c, x)
 

Function/Subroutine Documentation

◆ lcc()

real*8 function, dimension(2) hto_linear_comb_c::lcc ( real*8, dimension(:), intent(in)  c,
real*8, dimension(2), intent(in)  x 
)

Definition at line 346 of file CALLING_cpHTO.f.

346  USE hto_acmplx_pro
347  USE hto_units
348  IMPLICIT NONE
349  real*8, dimension(:) :: c
350  real*8, dimension(2) :: x,lcc,sum
351  INTENT(IN) c,x
352  INTEGER n,i
353  n= size(c)
354  sum= c(n)*co
355  DO i=n-1,1,-1
356  sum= (sum.cp.x)+c(i)*co
357  ENDDO
358  lcc= sum
hto_acmplx_pro
Definition: CALLING_cpHTO.f:257
hto_units::co
real *8, dimension(1:2) co
Definition: CALLING_cpHTO.f:188
hto_units
Definition: CALLING_cpHTO.f:179
hto_acmplx_pro::cp
real *8 function, dimension(2) cp(x, y)
Definition: CALLING_cpHTO.f:263