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.
Public Member Functions | List of all members
hto_cmplx_root::operator(.cr.) Interface Reference

Public Member Functions

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

Detailed Description

Definition at line 660 of file CALLING_cpHTO.f.

Member Function/Subroutine Documentation

◆ cr()

real*8 function, dimension(2) hto_cmplx_root::operator(.cr.)::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

The documentation for this interface was generated from the following file:
hto_cmplx_root::cr
real *8 function, dimension(2) cr(x, ep)
Definition: CALLING_cpHTO.f:665