Bug in the B0 implementation in AddLoopFunctions.f90
Posted: 14. Jul 2017, 12:17
Hi Florian,
The triviality check for the B0 function misses the condition for zero momentum:
This screws up the neutrino contribution to Z self energy and probably some other things.
Cheers,
Philip
The triviality check for the B0 function misses the condition for zero momentum:
Code: Select all
Complex(dp) Function SA_B0(xp, xm1, xm2)
Implicit None
Real(dp), Intent(in) :: xp, xm1, xm2
If ((xm1.eq.0._dp).and.(xm2.eq.0._dp)) Then
SA_B0=0._dp
Return
End if
...
Cheers,
Philip