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

Data Types

interface  operator(.cln.)
 

Functions/Subroutines

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

Function/Subroutine Documentation

◆ cln()

real*8 function, dimension(2) hto_cmplx_ln::cln ( real*8, intent(in)  x,
real*8, intent(in)  ep 
)

Definition at line 445 of file CALLING_cpHTO.f.

445  USE hto_riemann
446  IMPLICIT NONE
447  real*8, dimension(2) :: cln
448  real*8, INTENT(IN) :: x,ep
449  IF(abs(ep).ne.1.d0) THEN
450  print*,' Wrong argument for CLN '
451  stop
452  ENDIF
453  cln(1)= log(abs(x))
454  IF(x > 0.d0) THEN
455  cln(2)= 0.d0
456  ELSE
457  cln(2)= ep*pi
458  ENDIF
hto_riemann
Definition: CALLING_cpHTO.f:195