GM2Calc 2.3.0
Loading...
Searching...
No Matches
gm2_1loop_H.cpp
Go to the documentation of this file.
1// ====================================================================
2// This file is part of GM2Calc.
3//
4// GM2Calc is free software: you can redistribute it and/or modify
5// it under the terms of the GNU General Public License as published
6// by the Free Software Foundation, either version 3 of the License,
7// or (at your option) any later version.
8//
9// GM2Calc is distributed in the hope that it will be useful, but
10// WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12// General Public License for more details.
13//
14// You should have received a copy of the GNU General Public License
15// along with GM2Calc. If not, see
16// <http://www.gnu.org/licenses/>.
17// ====================================================================
18
20#include "gm2_ffunctions.hpp"
21#include <cmath>
22#include <complex>
23
24/**
25 * \file gm2_1loop_H.cpp
26 *
27 * Contains functions necessary to calculate the THDM
28 * contributions for g-2 at the 1-loop level.
29 */
30
31namespace gm2calc {
32
33namespace thdm {
34
35namespace {
36
37const double pi = 3.1415926535897932;
38const double pi2 = 9.8696044010893586; // Pi^2
39
40double sqr(double x) noexcept { return x*x; }
41
42/// Eq.(28), arxiv:1607.06292
43double Fh(double x) noexcept
44{
45 return F1C(x)/12 + F2C(x)/3;
46}
47
48/// Eq.(29), arxiv:1607.06292
49double FA(double x) noexcept
50{
51 return F1C(x)/12 - F2C(x)/3;
52}
53
54/// Eq.(30), arxiv:1607.06292
55double FHp(double x) noexcept
56{
57 return -F1N(x)/12;
58}
59
60double AS(int gen, const Eigen::Matrix<double,3,1>& ml, double mS2, const Eigen::Matrix<std::complex<double>,3,3>& y) noexcept
61{
62 const auto x = sqr(ml(gen))/mS2;
63 const auto y2 = std::conj(y(gen, 1))*std::conj(y(1, gen));
64
65 return
66 + (std::norm(y(gen, 1)) + std::norm(y(1, gen)))*F1C(x)/24
67 + std::real(y2)*ml(gen)/ml(1)*F2C(x)/3;
68}
69
70double AA(int gen, const Eigen::Matrix<double,3,1>& ml, double mS2, const Eigen::Matrix<std::complex<double>,3,3>& y) noexcept
71{
72 const auto x = sqr(ml(gen))/mS2;
73 const auto y2 = std::conj(y(gen, 1))*std::conj(y(1, gen));
74
75 return
76 + (std::norm(y(gen, 1)) + std::norm(y(1, gen)))*F1C(x)/24
77 - std::real(y2)*ml(gen)/ml(1)*F2C(x)/3;
78}
79
80double AHp(int gen, const Eigen::Matrix<double,3,1>& mv, double mS2, const Eigen::Matrix<std::complex<double>,3,3>& y) noexcept
81{
82 return -std::norm(y(gen, 1))/48*(
83 F1N(sqr(mv(1))/mS2) + F1N(sqr(mv(gen))/mS2));
84}
85
86
87} // anonymous namespace
88
89/**
90 * Approximation for 1-loop contribution
91 * Eq (27) from arxiv:1607.06292
92 *
93 * @note The factor 1/2 in front of the charged Higgs contribution
94 * stems from the fact that \f$Y_l^{H^\pm} = \sqrt{2}\; Y_l^A\f$. In
95 * Eq.(27) the prefactor of the charged Higgs contribution is
96 * \f$(Y_l^A)^2\f$, not \f$(Y_l^{H^\pm})^2\f$.
97 */
98double amu1L_approx(const THDM_1L_parameters& pars) noexcept
99{
100 const auto mm2 = sqr(pars.mm);
101 const auto mw2 = sqr(pars.mw);
102 const auto mz2 = sqr(pars.mz);
103 const auto mhSM2 = sqr(pars.mhSM);
104 const auto mh2 = sqr(pars.mh(0));
105 const auto mH2 = sqr(pars.mh(1));
106 const auto mA2 = sqr(pars.mA);
107 const auto mHp2 = sqr(pars.mHp);
108 const auto sw2 = 1 - mw2/mz2;
109 const auto e2 = 4*pi*pars.alpha_em;
110 const auto g22 = e2/sw2;
111 const auto v2 = 4*mw2/g22;
112
113 // Eq.(27), arxiv:1607.06292
114 const auto res =
115 + std::norm(pars.ylh(1,1))/mh2*Fh(mm2/mh2)
116 + std::norm(pars.ylH(1,1))/mH2*Fh(mm2/mH2)
117 + std::norm(pars.ylA(1,1))/mA2*FA(mm2/mA2)
118 + 0.5 * std::norm(pars.ylHp(1,1))/mHp2*FHp(mm2/mHp2)
119 // subtract SM contribution
120 - mm2/(v2*mhSM2)*Fh(mm2/mhSM2);
121
122 return mm2*res/(8*pi2);
123}
124
125/**
126 * Full (CP-conserving) 1-loop contribution
127 */
128double amu1L(const THDM_1L_parameters& pars) noexcept
129{
130 const auto mm2 = sqr(pars.mm);
131 const auto mw2 = sqr(pars.mw);
132 const auto mz2 = sqr(pars.mz);
133 const auto mhSM2 = sqr(pars.mhSM);
134 const auto mh2 = sqr(pars.mh(0));
135 const auto mH2 = sqr(pars.mh(1));
136 const auto mA2 = sqr(pars.mA);
137 const auto mHp2 = sqr(pars.mHp);
138 const auto sw2 = 1 - mw2/mz2;
139 const auto e2 = 4*pi*pars.alpha_em;
140 const auto g2 = std::sqrt(e2/sw2);
141 const auto v = 2*pars.mw/g2;
142
143 const Eigen::Matrix<double, 3, 3> ylhSM{
144 (Eigen::Matrix<double, 3, 3>()
145 << 0.0, 0.0, 0.0,
146 0.0, pars.mm/v, 0.0,
147 0.0, 0.0, 0.0).finished()};
148
149 double res = 0.0;
150
151 for (int g = 0; g < 3; ++g) {
152 res += AS(g, pars.ml, mh2, pars.ylh)/mh2;
153 res += AS(g, pars.ml, mH2, pars.ylH)/mH2;
154 res += AA(g, pars.ml, mA2, pars.ylA)/mA2;
155 res += AHp(g, pars.mv, mHp2, pars.ylHp)/mHp2;
156 }
157
158 // subtract SM contribution
159 res -= AS(1, pars.ml, mhSM2, ylhSM)/mhSM2;
160
161 return mm2*res/(8*pi2);
162}
163
164/**
165 * Calculates the 1-loop THDM contribution to \f$\Delta\alpha\f$.
166 * \f$\alpha^{\text{THDM}} = \alpha^{\text{SM}}/(1 - \Delta\alpha)\f$
167 *
168 * @param alpha electromagnetic coupling
169 * @param mHp charged Higgs mass
170 * @param q renormalization scale
171 *
172 * @return 1-loop THDM contribution to \f$\Delta\alpha\f$
173 */
174double delta_alpha(double alpha, double mHp, double q) noexcept
175{
176 return -alpha/(6*pi)*std::log(std::abs(mHp/q));
177}
178
179} // namespace thdm
180
181} // namespace gm2calc
double mw2
squared W boson mass
double mz2
squared Z boson mass
double v
double mA2
double amu1L_approx(const THDM_1L_parameters &pars) noexcept
Approximation for 1-loop contribution Eq (27) from arxiv:1607.06292.
double delta_alpha(double alpha, double mHp, double q) noexcept
Calculates the 1-loop THDM contribution to .
double amu1L(const THDM_1L_parameters &pars) noexcept
Full (CP-conserving) 1-loop contribution.
double F1N(double x) noexcept
, Eq (52) arXiv:hep-ph/0609168
T sqr(T x) noexcept
returns number squared
void svd_eigen(const Eigen::Matrix< Scalar, M, N > &m, Eigen::Array< Real,(((M)<(N)) ?(M) :(N)), 1 > &s, Eigen::Matrix< Scalar, M, M > *u, Eigen::Matrix< Scalar, N, N > *vh)
double F1C(double x) noexcept
, Eq (54) arXiv:hep-ph/0609168
double F2C(double x) noexcept
, Eq (55) arXiv:hep-ph/0609168
parameters to be passed to the 1-loop contribution functions