GM2Calc
2.3.0
Loading...
Searching...
No Matches
src
MSSMNoFV
MSSMNoFV_onshell_soft_parameters.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
19
#include "
gm2calc/MSSMNoFV_onshell_soft_parameters.hpp
"
20
21
#include <iostream>
22
23
namespace
gm2calc
{
24
25
void
MSSMNoFV_onshell_soft_parameters::print
(std::ostream&
ostr
)
const
26
{
27
MSSMNoFV_onshell_susy_parameters::print
(
ostr
);
28
ostr
<<
"soft parameters:\n"
;
29
ostr
<<
"TYd = "
<<
TYd
<<
'\n'
;
30
ostr
<<
"TYe = "
<<
TYe
<<
'\n'
;
31
ostr
<<
"TYu = "
<<
TYu
<<
'\n'
;
32
ostr
<<
"BMu = "
<<
BMu
<<
'\n'
;
33
ostr
<<
"mq2 = "
<<
mq2
<<
'\n'
;
34
ostr
<<
"ml2 = "
<<
ml2
<<
'\n'
;
35
ostr
<<
"mHd2 = "
<<
mHd2
<<
'\n'
;
36
ostr
<<
"mHu2 = "
<<
mHu2
<<
'\n'
;
37
ostr
<<
"md2 = "
<<
md2
<<
'\n'
;
38
ostr
<<
"mu2 = "
<<
mu2
<<
'\n'
;
39
ostr
<<
"me2 = "
<<
me2
<<
'\n'
;
40
ostr
<<
"MassB = "
<<
MassB
<<
'\n'
;
41
ostr
<<
"MassWB = "
<<
MassWB
<<
'\n'
;
42
ostr
<<
"MassG = "
<<
MassG
<<
'\n'
;
43
}
44
45
std::ostream&
operator<<
(std::ostream&
ostr
,
const
MSSMNoFV_onshell_soft_parameters
&
soft_pars
)
46
{
47
soft_pars
.print(
ostr
);
48
return
ostr
;
49
}
50
51
}
// namespace gm2calc
MSSMNoFV_onshell_soft_parameters.hpp
gm2calc::MSSMNoFV_onshell_soft_parameters
contains soft-breaking parameters of the MSSMNoFV model
Definition
MSSMNoFV_onshell_soft_parameters.hpp:39
gm2calc::MSSMNoFV_onshell_soft_parameters::mq2
Eigen::Matrix< double, 3, 3 > mq2
Definition
MSSMNoFV_onshell_soft_parameters.hpp:97
gm2calc::MSSMNoFV_onshell_soft_parameters::TYe
Eigen::Matrix< double, 3, 3 > TYe
Definition
MSSMNoFV_onshell_soft_parameters.hpp:94
gm2calc::MSSMNoFV_onshell_soft_parameters::print
void print(std::ostream &) const override
Definition
MSSMNoFV_onshell_soft_parameters.cpp:25
gm2calc::MSSMNoFV_onshell_soft_parameters::MassB
double MassB
Definition
MSSMNoFV_onshell_soft_parameters.hpp:104
gm2calc::MSSMNoFV_onshell_soft_parameters::mHd2
double mHd2
Definition
MSSMNoFV_onshell_soft_parameters.hpp:99
gm2calc::MSSMNoFV_onshell_soft_parameters::BMu
double BMu
Definition
MSSMNoFV_onshell_soft_parameters.hpp:96
gm2calc::MSSMNoFV_onshell_soft_parameters::md2
Eigen::Matrix< double, 3, 3 > md2
Definition
MSSMNoFV_onshell_soft_parameters.hpp:101
gm2calc::MSSMNoFV_onshell_soft_parameters::mHu2
double mHu2
Definition
MSSMNoFV_onshell_soft_parameters.hpp:100
gm2calc::MSSMNoFV_onshell_soft_parameters::TYu
Eigen::Matrix< double, 3, 3 > TYu
Definition
MSSMNoFV_onshell_soft_parameters.hpp:95
gm2calc::MSSMNoFV_onshell_soft_parameters::MassWB
double MassWB
Definition
MSSMNoFV_onshell_soft_parameters.hpp:105
gm2calc::MSSMNoFV_onshell_soft_parameters::MassG
double MassG
Definition
MSSMNoFV_onshell_soft_parameters.hpp:106
gm2calc::MSSMNoFV_onshell_soft_parameters::me2
Eigen::Matrix< double, 3, 3 > me2
Definition
MSSMNoFV_onshell_soft_parameters.hpp:103
gm2calc::MSSMNoFV_onshell_soft_parameters::ml2
Eigen::Matrix< double, 3, 3 > ml2
Definition
MSSMNoFV_onshell_soft_parameters.hpp:98
gm2calc::MSSMNoFV_onshell_soft_parameters::TYd
Eigen::Matrix< double, 3, 3 > TYd
Definition
MSSMNoFV_onshell_soft_parameters.hpp:93
gm2calc::MSSMNoFV_onshell_soft_parameters::mu2
Eigen::Matrix< double, 3, 3 > mu2
Definition
MSSMNoFV_onshell_soft_parameters.hpp:102
gm2calc::MSSMNoFV_onshell_susy_parameters::print
virtual void print(std::ostream &) const
Definition
MSSMNoFV_onshell_susy_parameters.cpp:25
gm2calc
Definition
gm2_config_options.hpp:22
gm2calc::svd_eigen
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)
Definition
gm2_linalg.hpp:40
gm2calc::operator<<
std::ostream & operator<<(std::ostream &os, const MSSMNoFV_onshell &model)
streaming operator
Definition
MSSMNoFV_onshell.cpp:891
Generated by
1.9.8