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_cmplx_root Module Reference

Data Types

interface  operator(.cr.)
 

Functions/Subroutines

real *8 function, dimension(2) cr (x, ep)
 

Function/Subroutine Documentation

◆ cr()

real*8 function, dimension(2) hto_cmplx_root::cr ( real*8, intent(in)  x,
real*8, intent(in)  ep 
)

Definition at line 665 of file CALLING_cpHTO.f.

665  IMPLICIT NONE
666  real*8, dimension(2) :: cr
667  real*8, INTENT(IN) :: x,ep
668  IF(x > 0.d0) THEN
669  cr(1)= sqrt(x)
670  cr(2)= 0.d0
671  ELSE
672  cr(1)= 0.d0
673  cr(2)= ep*sqrt(abs(x))
674  ENDIF
hto_cmplx_root::cr
real *8 function, dimension(2) cr(x, ep)
Definition: CALLING_cpHTO.f:665