flexiblesusy is hosted by Hepforge, IPPP Durham
FlexibleSUSY
pmns.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 PMNS_H
20#define PMNS_H
21
22#include <complex>
23#include <Eigen/Core>
24
25namespace flexiblesusy {
26
28 void reset_to_diagonal();
30
31 Eigen::Matrix<double,3,3> get_real_pmns() const;
32 Eigen::Matrix<std::complex<double>,3,3> get_complex_pmns() const;
33
34 static void to_pdg_convention(Eigen::Matrix<double,3,3>&,
35 Eigen::Matrix<double,3,3>&,
36 Eigen::Matrix<double,3,3>&,
37 Eigen::Matrix<double,3,3>&);
38 static void to_pdg_convention(Eigen::Matrix<double,3,3>&,
39 Eigen::Matrix<double,3,3>&,
40 Eigen::Matrix<double,3,3>&);
41 static void to_pdg_convention(Eigen::Matrix<std::complex<double>,3,3>&,
42 Eigen::Matrix<std::complex<double>,3,3>&,
43 Eigen::Matrix<std::complex<double>,3,3>&,
44 Eigen::Matrix<std::complex<double>,3,3>&);
45 static void to_pdg_convention(Eigen::Matrix<std::complex<double>,3,3>&,
46 Eigen::Matrix<std::complex<double>,3,3>&,
47 Eigen::Matrix<std::complex<double>,3,3>&);
48
49 double theta_12{0.}, theta_13{0.}, theta_23{0.},
50 delta{0.}, alpha_1{0.}, alpha_2{0.};
51};
52
53} // namespace flexiblesusy
54
55#endif
static void to_pdg_convention(Eigen::Matrix< double, 3, 3 > &, Eigen::Matrix< double, 3, 3 > &, Eigen::Matrix< double, 3, 3 > &, Eigen::Matrix< double, 3, 3 > &)
Definition: pmns.cpp:122
Eigen::Matrix< std::complex< double >, 3, 3 > get_complex_pmns() const
Definition: pmns.cpp:88
Eigen::Matrix< double, 3, 3 > get_real_pmns() const
Definition: pmns.cpp:60