JHUGen MELA  JHUGen v7.5.6, MELA v2.4.2
Matrix element calculations as used in JHUGen.
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