flexiblesusy is hosted by Hepforge, IPPP Durham
FlexibleSUSY
sfermions.hpp
Go to the documentation of this file.
1// ====================================================================
2// This file is part of FlexibleSUSY.
3//
4// FlexibleSUSY 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// FlexibleSUSY 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 FlexibleSUSY. If not, see
16// <http://www.gnu.org/licenses/>.
17// ====================================================================
18
19#ifndef SFERMIONS_H
20#define SFERMIONS_H
21
22namespace flexiblesusy {
23namespace sfermions {
24
26 up = 0,
27 down = 1,
31};
32
33extern const double Isospin[NUMBER_OF_MSSM_SPARTICLES];
36
40struct Mass_data {
41 double ml2{};
42 double mr2{};
43 double yf{};
44 double vd{}, vu{};
45 double gY{}, g2{};
46 double Tyf{};
47 double mu{};
48 double T3{};
49 double Yl{};
50 double Yr{};
51};
52
54double diagonalize_sfermions_2x2(const Mass_data&, double&, double&);
55
56} // namespace sfermions
57} // namespace flexiblesusy
58
59#endif
double diagonalize_sfermions_2x2(const Mass_data &pars, double &msf1, double &msf2)
returns mixing angle and sets (squared) mass eigenvalues
Definition: sfermions.cpp:65
const double Hypercharge_left[NUMBER_OF_MSSM_SPARTICLES]
Definition: sfermions.cpp:52
const double Isospin[NUMBER_OF_MSSM_SPARTICLES]
Definition: sfermions.cpp:48
const double Hypercharge_right[NUMBER_OF_MSSM_SPARTICLES]
Definition: sfermions.cpp:56
double Yr
Hypercharge of right-handed sfermion.
Definition: sfermions.hpp:50
double mu
Superpotential parameter.
Definition: sfermions.hpp:47
double yf
Yukawa coupling.
Definition: sfermions.hpp:43
double Tyf
trilinear coupling
Definition: sfermions.hpp:46
double Yl
Hypercharge of left-handed sfermion.
Definition: sfermions.hpp:49
double mr2
soft mass of right-handed sfermion
Definition: sfermions.hpp:42
double g2
gauge couplings (not GUT normalized)
Definition: sfermions.hpp:45
double ml2
soft mass of left-handed sfermion
Definition: sfermions.hpp:41