BSMPT 3.1.3
BSMPT - Beyond the Standard Model Phase Transitions : A C++ package for the computation of the EWPT in BSM models
Loading...
Searching...
No Matches
NegativeBosonSpline.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
3// Müller
4//
5// SPDX-License-Identifier: GPL-3.0-or-later
6
11#define _USE_MATH_DEFINES
12#include <BSMPT/utility/spline/spline.h>
13#include <cmath>
14#include <vector>
15
16#ifndef INCLUDE_BSMPT_THERMALFUNCTIONS_NEGATIVEBOSONSPLINE_H_
17#define INCLUDE_BSMPT_THERMALFUNCTIONS_NEGATIVEBOSONSPLINE_H_
18
23extern const int C_NegLine;
24
28extern const double NegLinearInt[3001][2];
29
33extern const std::vector<std::vector<double>> NegLinearIntTransposed;
34
41
42#endif /* INCLUDE_BSMPT_THERMALFUNCTIONS_NEGATIVEBOSONSPLINE_H_ */
const double NegLinearInt[3001][2]
NegLinearInt 2D Array containing the pairs (m^2 , J_(m^2)) for m^2 < 0.
Definition NegativeBosonSpline.cpp:16
const std::vector< std::vector< double > > NegLinearIntTransposed
NegLinearInt Transpose of NegLinearInt.
Definition NegativeBosonSpline.cpp:1019
const tk::spline JbosonNegativeSpline
Cubic spline with the for .
const int C_NegLine
C_NegLine Number of data points used for the interpolation of J_(m^2 < 0)
Definition NegativeBosonSpline.cpp:14
Definition spline.h:40