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