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
WallThicknessCommon.h
Go to the documentation of this file.
1#ifndef WALLTHICKNESSCOMMON_H
2#define WALLTHICKNESSCOMMON_H
3
4// Copyright (C) 2020 Philipp Basler, Margarete Mühlleitner and Jonas Müller
5// SPDX-FileCopyrightText: 2021 Philipp Basler, Margarete Mühlleitner and Jonas
6// Müller
7//
8// SPDX-License-Identifier: GPL-3.0-or-later
9
15#include <memory>
16#include <vector>
17
18namespace BSMPT
19{
20class Class_Potential_Origin;
21namespace Wall
22{
27{
31 std::size_t nVEV;
35 std::vector<double> VevMinimum;
39 std::vector<double> VeVSymmetric;
43 std::shared_ptr<Class_Potential_Origin> modelPointer;
47 double Temp;
51 boost_cubic_b_spline<double> spline;
55 bool UseSpline = false;
56};
57} // namespace Wall
58
59} // namespace BSMPT
60
61#endif // WALLTHICKNESSCOMMON_H
This classes calculates the Bounce action of the potential with a set temperature.
Definition CalculateEtaInterface.h:24
Definition WallThicknessCommon.h:27
boost_cubic_b_spline< double > spline
spline cubic spline used to find the potential barrier
Definition WallThicknessCommon.h:51
std::shared_ptr< Class_Potential_Origin > modelPointer
modelPointer shared_ptr for the parameter point
Definition WallThicknessCommon.h:43
bool UseSpline
UseSpline Decides if the spline is to be used or not.
Definition WallThicknessCommon.h:55
std::vector< double > VevMinimum
VevMinimum electroweak minimum in the broken phase.
Definition WallThicknessCommon.h:35
double Temp
Temp temperature at which to evaluate the parameter point.
Definition WallThicknessCommon.h:47
std::vector< double > VeVSymmetric
VeVSymmetric electroweak minimum in the symmetric phase.
Definition WallThicknessCommon.h:39
std::size_t nVEV
nVEV number of VEVs
Definition WallThicknessCommon.h:31