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
Kfunctions_grid.h
Go to the documentation of this file.
1// Copyright (C) 2020 Philipp Basler, Margarete Mühlleitner and Jonas Müller
2// SPDX-FileCopyrightText: 2021 Philipp Basler, Margarete Mühlleitner and Jonas Müller
3//
4// SPDX-License-Identifier: GPL-3.0-or-later
5
11#pragma once
12#include <array>
13namespace BSMPT
14{
15namespace Kfactors
16{
17namespace Data
18{
22const std::size_t msg_size = 12999;
26const std::size_t Tg_size = 121;
32extern const std::array<double, msg_size> msg;
37extern const std::array<double, Tg_size> Tg;
42extern const std::array<std::array<double, Tg_size>, msg_size> K1p;
46extern const std::array<std::array<double, Tg_size>, msg_size> K1m;
51extern const std::array<std::array<double, Tg_size>, msg_size> K2p;
56extern const std::array<std::array<double, Tg_size>, msg_size> K4p;
60extern const std::array<std::array<double, Tg_size>, msg_size> K4m;
65extern const std::array<std::array<double, Tg_size>, msg_size> K5p;
69extern const std::array<std::array<double, Tg_size>, msg_size> K5m;
74extern const std::array<std::array<double, Tg_size>, msg_size> K6p;
79extern const std::array<std::array<double, Tg_size>, msg_size> K8p;
84extern const std::array<std::array<double, Tg_size>, msg_size> K9p;
85} // namespace Data
86} // namespace Kfactors
87} // namespace BSMPT
const std::array< std::array< double, Tg_size >, msg_size > K5p
K5p Data set used for the interpolation of the K5 functions for fermions.
const std::array< std::array< double, Tg_size >, msg_size > K1m
K1m Data set used for the interpolation of the K1 functions for bosons.
const std::array< std::array< double, Tg_size >, msg_size > K1p
K1p Data set used for the interpolation of the K1 functions for fermions.
const std::array< std::array< double, Tg_size >, msg_size > K4m
K4m Data set used for the interpolation of the K4 functions for bosons.
const std::array< std::array< double, Tg_size >, msg_size > K2p
K2p Data set used for the interpolation of the K2 functions for fermions.
const std::array< std::array< double, Tg_size >, msg_size > K8p
K8p Data set used for the interpolation of the K8 functions for fermions.
const std::size_t Tg_size
Tg_size number of data points sampled in Tg.
Definition Kfunctions_grid.h:26
const std::size_t msg_size
msg_size number of data points sampled in msg
Definition Kfunctions_grid.h:22
const std::array< std::array< double, Tg_size >, msg_size > K5m
K5m Data set used for the interpolation of the K5 functions for bosons.
const std::array< double, msg_size > msg
msg Data points used to sample in the m^2 direction of the Kfunctions starting from 0 to 5 in steps o...
Definition TestNewKheader.cpp:15
const std::array< double, Tg_size > Tg
Tg Data points used to sample in the Temperature direction of the Kfunctions starting from 10 to 250 ...
const std::array< std::array< double, Tg_size >, msg_size > K9p
K9p Data set used for the interpolation of the K9 functions for fermions.
const std::array< std::array< double, Tg_size >, msg_size > K6p
K6p Data set used for the interpolation of the K6 functions for fermions.
const std::array< std::array< double, Tg_size >, msg_size > K4p
K4p Data set used for the interpolation of the K4 functions for fermions.
This classes calculates the Bounce action of the potential with a set temperature.
Definition CalculateEtaInterface.h:24