wilson-eft / wilson

A Python package for the running and matching of Wilson coefficients above and below the electroweak scale
https://wilson-eft.github.io
MIT License
26 stars 19 forks source link

Fixes wrong off-diagonal dipoles in egamma, uG and ugamma #100

Closed MJKirk closed 2 years ago

MJKirk commented 2 years ago

Fixes issue #95, where some mas matrix terms from the Denkens and Stoffer notebook where incorrectly translated into python.

Done automatically using sed script from when this problem was fixed for the down dipoles (#50), namely:

sed -i -e 's/einsum("p,r",one,me)/np.diag(me)/g'

and

sed -i -e 's/einsum("p,r",one,mu)/np.diag(mu)/g'
peterstangl commented 2 years ago

Thanks a lot @MJKirk!