GM2Calc 2.3.0
Loading...
Searching...
No Matches
MSSMNoFV_onshell_susy_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 GM2_MSSMNoFV_ONSHELL_SUSY_PARAMETERS_HPP
20#define GM2_MSSMNoFV_ONSHELL_SUSY_PARAMETERS_HPP
21
22#include <iosfwd>
23
24#include <Eigen/Core>
25
26namespace gm2calc {
27
28/**
29 * @class MSSMNoFV_onshell_susy_parameters
30 * @brief contains SUSY parameters of the MSSMNoFV model
31 *
32 * SUSY parameters are: Gauge couplings, Yukawa couplings, the Mu
33 * parameter and the VEVs. In addition, this class stores the current
34 * renormalization scale.
35 */
37public:
39
40 virtual void print(std::ostream&) const;
41
42 void set_scale(double s) { scale = s; }
43 double get_scale() const { return scale; }
44
45 void set_Yd(const Eigen::Matrix<double,3,3>& Yd_) { Yd = Yd_; }
46 void set_Yd(int i, int k, double value) { Yd(i,k) = value; }
47 void set_Ye(const Eigen::Matrix<double,3,3>& Ye_) { Ye = Ye_; }
48 void set_Ye(int i, int k, double value) { Ye(i,k) = value; }
49 void set_Yu(const Eigen::Matrix<double,3,3>& Yu_) { Yu = Yu_; }
50 void set_Yu(int i, int k, double value) { Yu(i,k) = value; }
51 void set_Mu(double Mu_) { Mu = Mu_; }
52 void set_g1(double g1_) { g1 = g1_; }
53 void set_g2(double g2_) { g2 = g2_; }
54 void set_g3(double g3_) { g3 = g3_; }
55 void set_vd(double vd_) { vd = vd_; }
56 void set_vu(double vu_) { vu = vu_; }
57
58 const Eigen::Matrix<double,3,3>& get_Yd() const { return Yd; }
59 double get_Yd(int i, int k) const { return Yd(i,k); }
60 const Eigen::Matrix<double,3,3>& get_Ye() const { return Ye; }
61 double get_Ye(int i, int k) const { return Ye(i,k); }
62 const Eigen::Matrix<double,3,3>& get_Yu() const { return Yu; }
63 double get_Yu(int i, int k) const { return Yu(i,k); }
64 double get_Mu() const { return Mu; }
65 double get_g1() const { return g1; }
66 double get_g2() const { return g2; }
67 double get_g3() const { return g3; }
68 double get_vd() const { return vd; }
69 double get_vu() const { return vu; }
70
71protected:
72 double scale{0.0};
73 Eigen::Matrix<double,3,3> Yd{Eigen::Matrix<double,3,3>::Zero()};
74 Eigen::Matrix<double,3,3> Ye{Eigen::Matrix<double,3,3>::Zero()};
75 Eigen::Matrix<double,3,3> Yu{Eigen::Matrix<double,3,3>::Zero()};
76 double Mu{0.0};
77 double g1{0.0};
78 double g2{0.0};
79 double g3{0.0};
80 double vd{0.0};
81 double vu{0.0};
82};
83
84std::ostream& operator<<(std::ostream&, const MSSMNoFV_onshell_susy_parameters&);
85
86} // namespace gm2calc
87
88#endif
contains SUSY parameters of the MSSMNoFV model
virtual ~MSSMNoFV_onshell_susy_parameters()=default
void set_Yu(const Eigen::Matrix< double, 3, 3 > &Yu_)
void set_Ye(const Eigen::Matrix< double, 3, 3 > &Ye_)
const Eigen::Matrix< double, 3, 3 > & get_Yd() const
const Eigen::Matrix< double, 3, 3 > & get_Ye() const
const Eigen::Matrix< double, 3, 3 > & get_Yu() const
void set_Yd(const Eigen::Matrix< double, 3, 3 > &Yd_)
std::ostream & operator<<(std::ostream &os, const MSSMNoFV_onshell &model)
streaming operator