JHUGen MELA  JHUGen v7.5.6, MELA v2.4.2
Matrix element calculations as used in JHUGen.
hto_cmplx_ln::operator(.cln.) Interface Reference

Public Member Functions

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

Detailed Description

Definition at line 440 of file CALLING_cpHTO.f.

Member Function/Subroutine Documentation

◆ cln()

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

The documentation for this interface was generated from the following file:
hto_riemann
Definition: CALLING_cpHTO.f:195