GM2Calc 2.3.0
Loading...
Searching...
No Matches
THDM_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_THDM_PROBLEMS_HPP
20#define GM2_THDM_PROBLEMS_HPP
21
22#include <iosfwd>
23#include <string>
24#include <vector>
25
26namespace gm2calc {
27
28/**
29 * @class THDM_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:
39 void clear(); ///< delete all problems and warnings
40 void clear_problems(); ///< delete all problems
41 void clear_warnings(); ///< delete all warnings
42 void flag_tachyon(const std::string&);
43 bool have_tachyon() const; ///< returns true if tachyon exists
44 bool have_problem() const; ///< returns true if problem has occurred
45 bool have_warning() const; ///< returns true if there is a warning
46 std::string get_warnings() const; ///< get warnings as string
47 std::string get_problems() const; ///< get problems as string
48 void print(std::ostream&) const; ///< print problems and warnings to stream
49 void print_problems(std::ostream&) const; ///< print problems to stream
50 void print_warnings(std::ostream&) const; ///< print warnings to stream
51
52private:
53 std::vector<std::string> tachyons;
54};
55
56std::ostream& operator<<(std::ostream&, const THDM_problems&);
57
58} // namespace gm2calc
59
60#endif
contains problem and warning flags
void flag_tachyon(const std::string &)
void clear()
delete all problems and warnings
void print_warnings(std::ostream &) const
print warnings to stream
bool have_warning() const
returns true if there is a warning
std::string get_warnings() const
get warnings as string
std::string get_problems() const
get problems as string
void print_problems(std::ostream &) const
print problems to stream
void print(std::ostream &) const
print problems and warnings to stream
bool have_tachyon() const
returns true if tachyon exists
void clear_warnings()
delete all warnings
void clear_problems()
delete all problems
bool have_problem() const
returns true if problem has occurred
std::ostream & operator<<(std::ostream &os, const MSSMNoFV_onshell &model)
streaming operator