Skip to content

Commit

Permalink
use prefac also for AL and AR
Browse files Browse the repository at this point in the history
  • Loading branch information
peterstangl committed Jan 12, 2021
1 parent 047bbc3 commit b5f5244
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flavio/physics/mudecays/mueconversion.py
Expand Up @@ -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}
Expand Down

0 comments on commit b5f5244

Please sign in to comment.