GM2Calc 2.3.0
Loading...
Searching...
No Matches
MSSMNoFV_onshell_problems.hpp
Go to the documentation of this file.
1// ====================================================================
2// This file is part of GM2Calc.
3//
4// GM2Calc is free software: you can redistribute it and/or modify
5// it under the terms of the GNU General Public License as published
6// by the Free Software Foundation, either version 3 of the License,
7// or (at your option) any later version.
8//
9// GM2Calc is distributed in the hope that it will be useful, but
10// WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12// General Public License for more details.
13//
14// You should have received a copy of the GNU General Public License
15// along with GM2Calc. If not, see
16// <http://www.gnu.org/licenses/>.
17// ====================================================================
18
19#ifndef GM2_MSSMNoFV_ONSHELL_PROBLEMS_HPP
20#define GM2_MSSMNoFV_ONSHELL_PROBLEMS_HPP
21
22#include <iosfwd>
23#include <string>
24#include <vector>
25
26namespace gm2calc {
27
28/**
29 * @class MSSMNoFV_onshell_problems
30 * @brief contains problem and warning flags
31 *
32 * If a problem has occurred, the physical particle spectrum cannot be
33 * trusted (for example tachyons are present). A warning means an
34 * imprecision has occurred and care must be taken when interpreting
35 * the particle spectrum.
36 */
38public:
40 void clear() { *this = Convergence_problem(); }
41 double precision{0.0}; ///< achieved accuracy (in GeV)
42 unsigned iterations{0}; ///< used number of iterations
43 };
44
45 void clear(); ///< delete all problems and warnings
46 void clear_problems(); ///< delete all problems
47 void clear_warnings(); ///< delete all warnings
48 void flag_no_convergence_Mu_MassB_MassWB(double, unsigned);
49 void flag_no_convergence_me2(double, unsigned);
50 void flag_tachyon(const std::string&);
54 bool no_me2_convergence() const;
55 Convergence_problem get_Mu_MassB_MassWB_convergence_problem() const;
56 Convergence_problem get_me2_convergence_problem() const;
57 bool have_tachyon() const; ///< returns true if tachyon exists
58 bool have_problem() const; ///< returns true if problem has occurred
59 bool have_warning() const; ///< returns true if there is a warning
60 std::string get_warnings() const; ///< get warnings as string
61 std::string get_problems() const; ///< get problems as string
62 void print(std::ostream&) const; ///< print problems and warnings to stream
63 void print_problems(std::ostream&) const; ///< print problems to stream
64 void print_warnings(std::ostream&) const; ///< print warnings to stream
65
66private:
67 bool have_no_convergence_Mu_MassB_MassWB{false};
68 bool have_no_convergence_me2{false};
69 std::vector<std::string> tachyons;
70 Convergence_problem convergence_problem_Mu_MassB_MassWB;
71 Convergence_problem convergence_problem_me2;
72};
73
74std::ostream& operator<<(std::ostream&, const MSSMNoFV_onshell_problems&);
75
76} // namespace gm2calc
77
78#endif
contains problem and warning flags
void print_warnings(std::ostream &) const
print warnings to stream
Convergence_problem get_me2_convergence_problem() const
returns information about convergence problem for me2(1,1) iteration
bool have_tachyon() const
returns true if tachyon exists
bool have_problem() const
returns true if problem has occurred
std::string get_warnings() const
get warnings as string
Convergence_problem get_Mu_MassB_MassWB_convergence_problem() const
returns information about convergence problem for Mu, M1, M2 iteration
void clear()
delete all problems and warnings
bool no_me2_convergence() const
returns true if DR-bar to OS conversion for me2(1,1) did not converge
bool no_Mu_MassB_MassWB_convergence() const
returns true if DR-bar to OS conversion for Mu, M1, M2 did not converge
void print_problems(std::ostream &) const
print problems to stream
void print(std::ostream &) const
print problems and warnings to stream
void flag_no_convergence_Mu_MassB_MassWB(double, unsigned)
bool have_warning() const
returns true if there is a warning
std::string get_problems() const
get problems as string
std::ostream & operator<<(std::ostream &os, const MSSMNoFV_onshell &model)
streaming operator