GM2Calc 2.3.0
Loading...
Searching...
No Matches
MSSMNoFV_onshell_soft_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_SOFT_PARAMETERS_HPP
20#define GM2_MSSMNoFV_ONSHELL_SOFT_PARAMETERS_HPP
21
23
24#include <iosfwd>
25
26#include <Eigen/Core>
27
28namespace gm2calc {
29
30/**
31 * @class MSSMNoFV_onshell_soft_parameters
32 * @brief contains soft-breaking parameters of the MSSMNoFV model
33 *
34 * Soft-breaking parameters are: soft-breaking squared mass parameters
35 * for the sfermions and Higgs dupletts, soft-breaking gaugino mass
36 * parameters, soft-breaking trilinear couplings and the BMu
37 * parameter.
38 */
40public:
42
43 void print(std::ostream&) const override;
44
45 void set_TYd(const Eigen::Matrix<double,3,3>& TYd_) { TYd = TYd_; }
46 void set_TYd(int i, int k, double value) { TYd(i,k) = value; }
47 void set_TYe(const Eigen::Matrix<double,3,3>& TYe_) { TYe = TYe_; }
48 void set_TYe(int i, int k, double value) { TYe(i,k) = value; }
49 void set_TYu(const Eigen::Matrix<double,3,3>& TYu_) { TYu = TYu_; }
50 void set_TYu(int i, int k, double value) { TYu(i,k) = value; }
51 void set_BMu(double BMu_) { BMu = BMu_; }
52 void set_mq2(const Eigen::Matrix<double,3,3>& mq2_) { mq2 = mq2_; }
53 void set_mq2(int i, int k, double value) { mq2(i,k) = value; }
54 void set_ml2(const Eigen::Matrix<double,3,3>& ml2_) { ml2 = ml2_; }
55 void set_ml2(int i, int k, double value) { ml2(i,k) = value; }
56 void set_mHd2(double mHd2_) { mHd2 = mHd2_; }
57 void set_mHu2(double mHu2_) { mHu2 = mHu2_; }
58 void set_md2(const Eigen::Matrix<double,3,3>& md2_) { md2 = md2_; }
59 void set_md2(int i, int k, double value) { md2(i,k) = value; }
60 void set_mu2(const Eigen::Matrix<double,3,3>& mu2_) { mu2 = mu2_; }
61 void set_mu2(int i, int k, double value) { mu2(i,k) = value; }
62 void set_me2(const Eigen::Matrix<double,3,3>& me2_) { me2 = me2_; }
63 void set_me2(int i, int k, double value) { me2(i,k) = value; }
64 void set_MassB(double MassB_) { MassB = MassB_; }
65 void set_MassWB(double MassWB_) { MassWB = MassWB_; }
66 void set_MassG(double MassG_) { MassG = MassG_; }
67
68 const Eigen::Matrix<double,3,3>& get_TYd() const { return TYd; }
69 double get_TYd(int i, int k) const { return TYd(i,k); }
70 const Eigen::Matrix<double,3,3>& get_TYe() const { return TYe; }
71 double get_TYe(int i, int k) const { return TYe(i,k); }
72 const Eigen::Matrix<double,3,3>& get_TYu() const { return TYu; }
73 double get_TYu(int i, int k) const { return TYu(i,k); }
74 double get_BMu() const { return BMu; }
75 const Eigen::Matrix<double,3,3>& get_mq2() const { return mq2; }
76 double get_mq2(int i, int k) const { return mq2(i,k); }
77 const Eigen::Matrix<double,3,3>& get_ml2() const { return ml2; }
78 double get_ml2(int i, int k) const { return ml2(i,k); }
79 double get_mHd2() const { return mHd2; }
80 double get_mHu2() const { return mHu2; }
81 const Eigen::Matrix<double,3,3>& get_md2() const { return md2; }
82 double get_md2(int i, int k) const { return md2(i,k); }
83 const Eigen::Matrix<double,3,3>& get_mu2() const { return mu2; }
84 double get_mu2(int i, int k) const { return mu2(i,k); }
85 const Eigen::Matrix<double,3,3>& get_me2() const { return me2; }
86 double get_me2(int i, int k) const { return me2(i,k); }
87 double get_MassB() const { return MassB; }
88 double get_MassWB() const { return MassWB; }
89 double get_MassG() const { return MassG; }
90
91
92protected:
93 Eigen::Matrix<double,3,3> TYd{Eigen::Matrix<double,3,3>::Zero()};
94 Eigen::Matrix<double,3,3> TYe{Eigen::Matrix<double,3,3>::Zero()};
95 Eigen::Matrix<double,3,3> TYu{Eigen::Matrix<double,3,3>::Zero()};
96 double BMu{0.0};
97 Eigen::Matrix<double,3,3> mq2{Eigen::Matrix<double,3,3>::Zero()};
98 Eigen::Matrix<double,3,3> ml2{Eigen::Matrix<double,3,3>::Zero()};
99 double mHd2{0.0};
100 double mHu2{0.0};
101 Eigen::Matrix<double,3,3> md2{Eigen::Matrix<double,3,3>::Zero()};
102 Eigen::Matrix<double,3,3> mu2{Eigen::Matrix<double,3,3>::Zero()};
103 Eigen::Matrix<double,3,3> me2{Eigen::Matrix<double,3,3>::Zero()};
104 double MassB{0.0};
105 double MassWB{0.0};
106 double MassG{0.0};
107};
108
109std::ostream& operator<<(std::ostream&, const MSSMNoFV_onshell_soft_parameters&);
110
111} // namespace gm2calc
112
113#endif
contains soft-breaking parameters of the MSSMNoFV model
const Eigen::Matrix< double, 3, 3 > & get_TYd() const
const Eigen::Matrix< double, 3, 3 > & get_TYu() const
const Eigen::Matrix< double, 3, 3 > & get_TYe() const
void set_md2(const Eigen::Matrix< double, 3, 3 > &md2_)
const Eigen::Matrix< double, 3, 3 > & get_mq2() const
const Eigen::Matrix< double, 3, 3 > & get_mu2() const
const Eigen::Matrix< double, 3, 3 > & get_md2() const
void set_mu2(const Eigen::Matrix< double, 3, 3 > &mu2_)
const Eigen::Matrix< double, 3, 3 > & get_me2() const
void set_TYd(const Eigen::Matrix< double, 3, 3 > &TYd_)
const Eigen::Matrix< double, 3, 3 > & get_ml2() const
void set_mq2(const Eigen::Matrix< double, 3, 3 > &mq2_)
void set_ml2(const Eigen::Matrix< double, 3, 3 > &ml2_)
void set_TYu(const Eigen::Matrix< double, 3, 3 > &TYu_)
virtual ~MSSMNoFV_onshell_soft_parameters()=default
void set_me2(const Eigen::Matrix< double, 3, 3 > &me2_)
void set_TYe(const Eigen::Matrix< double, 3, 3 > &TYe_)
contains SUSY parameters of the MSSMNoFV model
std::ostream & operator<<(std::ostream &os, const MSSMNoFV_onshell &model)
streaming operator