Skip to content

Commit

Permalink
[zdecays] Fix symmetry factor for SMEFT Wilson coefficient ll_1221 ap…
Browse files Browse the repository at this point in the history
…pearing in muon decay
  • Loading branch information
DavidMStraub committed Jun 11, 2019
1 parent fed6180 commit 68ec2c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion flavio/physics/wdecays/mw.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def dmW_SMEFT(par, C):
ch2 = 1 - sh2
ch = sqrt(ch2)
Dh = ch * sh / ((ch**2 - sh**2) * 2 * sqrt(2) * par['GF'])
return Dh * (4 * C['phiWB'] + ch / sh * C['phiD'] + 2 * sh / ch * (C['phil3_11'] + C['phil3_22']) - 2 * sh / ch * C['ll_1221']).real
return Dh * (4 * C['phiWB'] + ch / sh * C['phiD'] + 2 * sh / ch * (C['phil3_11'] + C['phil3_22'] - C['ll_1221'] / 2)).real

def mW(wc_obj, par):
r"""$W$ pole mass."""
Expand Down
4 changes: 2 additions & 2 deletions flavio/physics/zdecays/smeftew.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@


def d_GF(par, C):
return 1 / (sqrt(2) * par['GF']) * (sqrt(2) * (C['phil3_22'] + C['phil3_11']) / 2 - C['ll_1221'] / sqrt(2))
return 1 / (sqrt(2) * par['GF']) * sqrt(2) / 2 * (C['phil3_22'] + C['phil3_11'] - C['ll_1221'] / 2)


def _sinthetahat2(par):
Expand All @@ -35,7 +35,7 @@ def d_sh2(par, C):
ch = sqrt(ch2)
s2h = 2 * ch * sh # sin(2 * thetahat)
c2h = ch**2 - sh**2 # cos(2 * thetahat)
dC = s2h * (C['phiD'] + 2 * (C['phil3_22'] + C['phil3_11']) - 2 * C['ll_1221']) + 4 * C['phiWB']
dC = s2h * (C['phiD'] + 2 * (C['phil3_22'] + C['phil3_11'] - C['ll_1221'] / 2)) + 4 * C['phiWB']
return s2h / (8 * c2h * sqrt(2) * par['GF']) * dC


Expand Down

0 comments on commit 68ec2c4

Please sign in to comment.