GM2Calc 2.3.0
Loading...
Searching...
No Matches
THDM_parameters.hpp
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
19#ifndef THDM_PARAMETERS_H
20#define THDM_PARAMETERS_H
21
22#include <complex>
23#include <iosfwd>
24#include <Eigen/Core>
25
26namespace gm2calc {
27
28/**
29 * @class THDM_parameters
30 * @brief Contains the parameters of the THDM model
31 */
33public:
34 void print(std::ostream&) const;
35
36 void set_g1(double g1_) { g1 = g1_; }
37 void set_g2(double g2_) { g2 = g2_; }
38 void set_g3(double g3_) { g3 = g3_; }
39 void set_lambda1(double lambda1_) { lambda1 = lambda1_; }
40 void set_lambda2(double lambda2_) { lambda2 = lambda2_; }
41 void set_lambda3(double lambda3_) { lambda3 = lambda3_; }
42 void set_lambda4(double lambda4_) { lambda4 = lambda4_; }
43 void set_lambda5(double lambda5_) { lambda5 = lambda5_; }
44 void set_lambda6(double lambda6_) { lambda6 = lambda6_; }
45 void set_lambda7(double lambda7_) { lambda7 = lambda7_; }
46 void set_m122(double m122_) { m122 = m122_; }
47 void set_m112(double m112_) { m112 = m112_; }
48 void set_m222(double m222_) { m222 = m222_; }
49 void set_v1(double v1_) { v1 = v1_; }
50 void set_v2(double v2_) { v2 = v2_; }
51 void set_Gamma_u(const Eigen::Matrix<std::complex<double>,3,3>& Gamma_u_) { Gamma_u = Gamma_u_; }
52 void set_Gamma_u(int i, int k, const std::complex<double>& value) { Gamma_u(i,k) = value; }
53 void set_Pi_u(const Eigen::Matrix<std::complex<double>,3,3>& Pi_u_) { Pi_u = Pi_u_; }
54 void set_Pi_u(int i, int k, const std::complex<double>& value) { Pi_u(i,k) = value; }
55 void set_Gamma_d(const Eigen::Matrix<std::complex<double>,3,3>& Gamma_d_) { Gamma_d = Gamma_d_; }
56 void set_Gamma_d(int i, int k, const std::complex<double>& value) { Gamma_d(i,k) = value; }
57 void set_Gamma_l(const Eigen::Matrix<std::complex<double>,3,3>& Gamma_l_) { Gamma_l = Gamma_l_; }
58 void set_Gamma_l(int i, int k, const std::complex<double>& value) { Gamma_l(i,k) = value; }
59 void set_Pi_d(const Eigen::Matrix<std::complex<double>,3,3>& Pi_d_) { Pi_d = Pi_d_; }
60 void set_Pi_d(int i, int k, const std::complex<double>& value) { Pi_d(i,k) = value; }
61 void set_Pi_l(const Eigen::Matrix<std::complex<double>,3,3>& Pi_l_) { Pi_l = Pi_l_; }
62 void set_Pi_l(int i, int k, const std::complex<double>& value) { Pi_l(i,k) = value; }
63
64 double get_m122() const { return m122; }
65 double get_m112() const { return m112; }
66 double get_m222() const { return m222; }
67 double get_v1() const { return v1; }
68 double get_v2() const { return v2; }
69 double get_g1() const { return g1; }
70 double get_g2() const { return g2; }
71 double get_g3() const { return g3; }
72 double get_lambda1() const { return lambda1; }
73 double get_lambda2() const { return lambda2; }
74 double get_lambda3() const { return lambda3; }
75 double get_lambda4() const { return lambda4; }
76 double get_lambda5() const { return lambda5; }
77 double get_lambda6() const { return lambda6; }
78 double get_lambda7() const { return lambda7; }
79 const Eigen::Matrix<std::complex<double>,3,3>& get_Gamma_u() const { return Gamma_u; }
80 std::complex<double> get_Gamma_u(int i, int k) const { return Gamma_u(i,k); }
81 const Eigen::Matrix<std::complex<double>,3,3>& get_Pi_u() const { return Pi_u; }
82 std::complex<double> get_Pi_u(int i, int k) const { return Pi_u(i,k); }
83 const Eigen::Matrix<std::complex<double>,3,3>& get_Gamma_d() const { return Gamma_d; }
84 std::complex<double> get_Gamma_d(int i, int k) const { return Gamma_d(i,k); }
85 const Eigen::Matrix<std::complex<double>,3,3>& get_Gamma_l() const { return Gamma_l; }
86 std::complex<double> get_Gamma_l(int i, int k) const { return Gamma_l(i,k); }
87 const Eigen::Matrix<std::complex<double>,3,3>& get_Pi_d() const { return Pi_d; }
88 std::complex<double> get_Pi_d(int i, int k) const { return Pi_d(i,k); }
89 const Eigen::Matrix<std::complex<double>,3,3>& get_Pi_l() const { return Pi_l; }
90 std::complex<double> get_Pi_l(int i, int k) const { return Pi_l(i,k); }
91
92protected:
93 double g1{0.0};
94 double g2{0.0};
95 double g3{0.0};
96 double lambda6{0.0};
97 double lambda5{0.0};
98 double lambda7{0.0};
99 double lambda1{0.0};
100 double lambda4{0.0};
101 double lambda3{0.0};
102 double lambda2{0.0};
103 double m122{0.0};
104 double m112{0.0};
105 double m222{0.0};
106 double v1{0.0};
107 double v2{0.0};
108 Eigen::Matrix<std::complex<double>,3,3> Gamma_u{Eigen::Matrix<std::complex<double>,3,3>::Zero()};
109 Eigen::Matrix<std::complex<double>,3,3> Pi_u{Eigen::Matrix<std::complex<double>,3,3>::Zero()};
110 Eigen::Matrix<std::complex<double>,3,3> Gamma_d{Eigen::Matrix<std::complex<double>,3,3>::Zero()};
111 Eigen::Matrix<std::complex<double>,3,3> Gamma_l{Eigen::Matrix<std::complex<double>,3,3>::Zero()};
112 Eigen::Matrix<std::complex<double>,3,3> Pi_d{Eigen::Matrix<std::complex<double>,3,3>::Zero()};
113 Eigen::Matrix<std::complex<double>,3,3> Pi_l{Eigen::Matrix<std::complex<double>,3,3>::Zero()};
114};
115
116std::ostream& operator<<(std::ostream&, const THDM_parameters&);
117
118} // namespace gm2calc
119
120#endif
Contains the parameters of the THDM model.
void set_Gamma_d(int i, int k, const std::complex< double > &value)
Eigen::Matrix< std::complex< double >, 3, 3 > Gamma_u
void set_lambda5(double lambda5_)
void set_Gamma_u(const Eigen::Matrix< std::complex< double >, 3, 3 > &Gamma_u_)
Eigen::Matrix< std::complex< double >, 3, 3 > Pi_l
std::complex< double > get_Pi_l(int i, int k) const
void set_m112(double m112_)
void set_lambda7(double lambda7_)
const Eigen::Matrix< std::complex< double >, 3, 3 > & get_Pi_d() const
Eigen::Matrix< std::complex< double >, 3, 3 > Pi_u
Eigen::Matrix< std::complex< double >, 3, 3 > Pi_d
void set_Pi_d(int i, int k, const std::complex< double > &value)
void set_lambda4(double lambda4_)
const Eigen::Matrix< std::complex< double >, 3, 3 > & get_Gamma_d() const
void set_Pi_u(const Eigen::Matrix< std::complex< double >, 3, 3 > &Pi_u_)
void set_Pi_u(int i, int k, const std::complex< double > &value)
const Eigen::Matrix< std::complex< double >, 3, 3 > & get_Pi_l() const
std::complex< double > get_Gamma_u(int i, int k) const
void set_m222(double m222_)
const Eigen::Matrix< std::complex< double >, 3, 3 > & get_Pi_u() const
void set_Pi_d(const Eigen::Matrix< std::complex< double >, 3, 3 > &Pi_d_)
Eigen::Matrix< std::complex< double >, 3, 3 > Gamma_l
void set_m122(double m122_)
void set_lambda3(double lambda3_)
std::complex< double > get_Gamma_d(int i, int k) const
const Eigen::Matrix< std::complex< double >, 3, 3 > & get_Gamma_l() const
void set_Gamma_d(const Eigen::Matrix< std::complex< double >, 3, 3 > &Gamma_d_)
std::complex< double > get_Pi_d(int i, int k) const
void set_lambda6(double lambda6_)
void set_Pi_l(const Eigen::Matrix< std::complex< double >, 3, 3 > &Pi_l_)
Eigen::Matrix< std::complex< double >, 3, 3 > Gamma_d
void set_lambda2(double lambda2_)
void set_Gamma_l(int i, int k, const std::complex< double > &value)
void set_Pi_l(int i, int k, const std::complex< double > &value)
void print(std::ostream &) const
std::complex< double > get_Pi_u(int i, int k) const
void set_Gamma_l(const Eigen::Matrix< std::complex< double >, 3, 3 > &Gamma_l_)
const Eigen::Matrix< std::complex< double >, 3, 3 > & get_Gamma_u() const
void set_Gamma_u(int i, int k, const std::complex< double > &value)
void set_lambda1(double lambda1_)
std::complex< double > get_Gamma_l(int i, int k) const
std::ostream & operator<<(std::ostream &os, const MSSMNoFV_onshell &model)
streaming operator