BSMPT 3.0.7
BSMPT - Beyond the Standard Model Phase Transitions : A C++ package for the computation of the EWPT in BSM models
Loading...
Searching...
No Matches
R2HDM.h
1// SPDX-FileCopyrightText: 2021 Philipp Basler, Margarete Mühlleitner and Jonas
2// Müller
3//
4// SPDX-License-Identifier: GPL-3.0-or-later
5
7#include <map>
8#include <vector>
10{
11public:
12 using Matrix3D = std::vector<std::vector<std::vector<double>>>;
13 using Matrix2D = std::vector<std::vector<double>>;
15 Matrix3D CheckTripleCT;
16 Matrix3D CheckTripleCW;
17 Matrix3D CheckTripleTree;
18 std::map<int, BSMPT::Minimizer::EWPTReturnType> EWPTPerSetting;
19};
Definition R2HDM.h:10