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
CPINTHEDARK.h
1// SPDX-FileCopyrightText: 2021 Philipp Basler
2//
3// SPDX-License-Identifier: GPL-3.0-or-later
5#include <map>
6#include <vector>
8{
9public:
10 using Matrix3D = std::vector<std::vector<std::vector<double>>>;
11 using Matrix2D = std::vector<std::vector<double>>;
13 Matrix3D CheckTripleCT;
14 Matrix3D CheckTripleCW;
15 Matrix3D CheckTripleTree;
16 std::map<int, BSMPT::Minimizer::EWPTReturnType> EWPTPerSetting;
17};
Definition CPINTHEDARK.h:8