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
thermalcoefficientcalculator.h
1// Copyright (C) 2021 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
7#pragma once
8
9#include <functional>
10#include <map>
11
12namespace BSMPT
13{
14namespace ThermalFunctions
15{
22{
23public:
30 ThermalCoefficientCalculator(std::function<double(int)> func,
31 int maxOrderToPrecalc);
39 double GetCoefficentAtOrder(int n) const;
40
41private:
45 std::function<double(int)> Calculater;
50 const int MaxOrderToSave;
51
56 std::map<int, double> PreCalculatedCoefficents;
57};
58
59} // namespace ThermalFunctions
60} // namespace BSMPT
The ThermalCoefficientCalculator class is a thread-safe wrapper around the calculation of the coeffic...
Definition thermalcoefficientcalculator.h:22
std::function< double(int)> Calculater
Calculater stores the function to calculate the coefficient.
Definition thermalcoefficientcalculator.h:45
double GetCoefficentAtOrder(int n) const
GetCoefficentAtOrder.
Definition thermalcoefficientcalculator.cpp:30
const int MaxOrderToSave
MaxOrderToSave defines the highest order until which the coefficents are precalculated.
Definition thermalcoefficientcalculator.h:50
std::map< int, double > PreCalculatedCoefficents
PreCalculatedCoefficents Stores the precalculated coefficents. This will only be changed during the c...
Definition thermalcoefficientcalculator.h:56
This classes calculates the Bounce action of the potential with a set temperature.
Definition CalculateEtaInterface.h:24