Skip to content

Commit

Permalink
extend implementation of m_W observable (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterstangl committed Dec 3, 2023
1 parent ea92f02 commit d4d3619
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
7 changes: 7 additions & 0 deletions flavio/data/parameters_metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ s2w:
tex: $\sin^2 \hat\theta_w(m_Z)$
description: sine squared of the weak mixing angle in the $\overline{\text{MS}}$ scheme at the scale $m_Z$

Delta_alpha_e_had:
tex: $\Delta\alpha_{\rm had}^{(5)}(m_Z)$
description: hadronic contribution to the running of the electromagnetic fine structure constant between 0 and $m_Z$
Delta_alpha_e_lep:
tex: $\Delta\alpha_{\rm lep}(m_Z)$
description: leptonic contribution to the running of the electromagnetic fine structure constant between 0 and $m_Z$


# CKM parameters

Expand Down
6 changes: 5 additions & 1 deletion flavio/data/parameters_uncorrelated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ alpha_s: 0.1182(8) # FLAG 2019
s2w: 0.23129(5) # PDG 2017


Delta_alpha_e_had: 0.027572 ± 0.000359 # hep-ph/0104304 page 5
Delta_alpha_e_lep: 0.0314977 # hep-ph/9803313 table 1


# CKM parameters

Vus: 0.2248(8) # FLAG 2017 Nf=2+1+1
Expand Down Expand Up @@ -560,7 +564,7 @@ PDFmembers avg=0 replicas=1-100:
delta_BsKstarmumu: 0 ± 0.078

# Updated EM corrections for Ke3 decays
# From 2103.04843 (Table VI)
# From 2103.04843 (Table VI)
# Uncertainties combined in quadrature, factor of 2 normalisation difference since
# flavio used the normalisation of 1005.2323
K0e3 delta_EM: 0.580(16)1e-2
Expand Down
2 changes: 1 addition & 1 deletion flavio/physics/wdecays/mw.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def mW_SM(par):
dh = (par['m_h'] / 100)**2
dt = (par['m_t'] / 174.3)**2 - 1
dZ = par['m_Z'] / 91.1875 - 1
dalpha = 0 # FIXME
dalpha = (par['Delta_alpha_e_had']+par['Delta_alpha_e_lep']) / 0.05907 - 1
dalphas = par['alpha_s'] / 0.119 - 1
m0W = 80.3779
c1 = 0.05427
Expand Down

0 comments on commit d4d3619

Please sign in to comment.