From b5f524402834c0da2b95870d511f7e06ed2c62e8 Mon Sep 17 00:00:00 2001 From: Peter Stangl Date: Tue, 12 Jan 2021 13:57:06 +0100 Subject: [PATCH] use `prefac` also for `AL` and `AR` --- flavio/physics/mudecays/mueconversion.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flavio/physics/mudecays/mueconversion.py b/flavio/physics/mudecays/mueconversion.py index 99707c5b..1016771a 100644 --- a/flavio/physics/mudecays/mueconversion.py +++ b/flavio/physics/mudecays/mueconversion.py @@ -25,9 +25,9 @@ def CR_mue(wc_obj, par, nucl): #####Wilson Coefficients###### #####Conversion Rate obtained from hep-ph/0203110##### wc = wc_obj.get_wc('mue', scale, par, nf_out=3) - AL = -np.sqrt(2)/(4*par['GF']*mm)*wc['Cgamma_emu'] - AR = -np.sqrt(2)/(4*par['GF']*mm)*wc['Cgamma_mue'].conjugate() prefac = -np.sqrt(2)/par['GF'] + AL = prefac / ( 4 * mm ) * wc['Cgamma_emu'] + AR = prefac / ( 4 * mm ) * wc['Cgamma_mue'].conjugate() gRV = {'u': prefac * ( wc['CVRR_mueuu'] + wc['CVLR_uumue'] ) / 2, 'd': prefac * ( wc['CVRR_muedd'] + wc['CVLR_ddmue'] ) / 2, 's': prefac * ( wc['CVRR_muess'] + wc['CVLR_ssmue'] ) / 2}