slha_format.hpp File Reference #include <string>
Include dependency graph for slha_format.hpp:
![]()
This graph shows which files directly or indirectly include this file:
![]() Go to the source code of this file.
Macro Definition Documentation◆ FORMAT_EFFECTIVECOUPLINGS
Value:
[&] { \
char buf[SLHA_MAX_LINE_LENGTH]; \
const int pdg1_ = (pdg1); \
const int pdg2_ = (pdg2); \
const int pdg3_ = (pdg3); \
const double width_ = (width); \
const std::string comment_ = (comment); \
std::snprintf(buf, SLHA_MAX_LINE_LENGTH, format_effectivecouplings, \
pdg1_, pdg2_, pdg3_, width_, comment_.c_str()); \
return std::string(buf); \
}()
Definition at line 196 of file slha_format.hpp. ◆ FORMAT_ELEMENT
Value:
[&] { \
char buf[SLHA_MAX_LINE_LENGTH]; \
const int pdg_ = (pdg); \
const double value_ = (value); \
const std::string name_ = (name); \
std::snprintf(buf, SLHA_MAX_LINE_LENGTH, single_element_formatter, pdg_, \
value_, name_.c_str()); \
return std::string(buf); \
}()
Definition at line 107 of file slha_format.hpp. ◆ FORMAT_MASS
Value:
[&] { \
char buf[SLHA_MAX_LINE_LENGTH]; \
const int pdg_ = (pdg); \
const double mass_ = (mass); \
const std::string name_ = (name); \
std::snprintf(buf, SLHA_MAX_LINE_LENGTH, mass_formatter, pdg_, mass_, \
name_.c_str()); \
return std::string(buf); \
}()
Definition at line 73 of file slha_format.hpp. ◆ FORMAT_MIXING_MATRIX
Value:
[&] { \
char buf[SLHA_MAX_LINE_LENGTH]; \
const int i_ = (i); \
const int k_ = (k); \
const double entry_ = (entry); \
const std::string name_ = (name); \
std::snprintf(buf, SLHA_MAX_LINE_LENGTH, mixing_matrix_formatter, i_, \
k_, entry_, name_.c_str()); \
return std::string(buf); \
}()
Definition at line 84 of file slha_format.hpp. ◆ FORMAT_NUMBER
Value:
[&] { \
char buf[SLHA_MAX_LINE_LENGTH]; \
const double n_ = (n); \
const std::string str_ = (str); \
std::snprintf(buf, SLHA_MAX_LINE_LENGTH, number_formatter, n_, \
str_.c_str()); \
return std::string(buf); \
}()
Definition at line 126 of file slha_format.hpp. ◆ FORMAT_OBSINFO
Value:
[&] { \
char buf[SLHA_MAX_LINE_LENGTH]; \
const int i_ = (i); \
const int j_ = (j); \
const std::string str_ = (str); \
std::snprintf(buf, SLHA_MAX_LINE_LENGTH, obsinfo_formatter, i_, j_, \
str_.c_str()); \
return std::string(buf); \
}()
Definition at line 146 of file slha_format.hpp. ◆ FORMAT_RANK_THREE_TENSOR
Value:
[&] { \
char buf[SLHA_MAX_LINE_LENGTH]; \
const int i_ = (i); \
const int j_ = (j); \
const int k_ = (k); \
const double entry_ = (entry); \
const std::string name_ = (name); \
std::snprintf(buf, SLHA_MAX_LINE_LENGTH, tensor_formatter, i_, j_, k_, \
entry_, name_.c_str()); \
return std::string(buf); \
}()
Definition at line 157 of file slha_format.hpp. ◆ FORMAT_SCALE
Value:
[&] { \
char buf[SLHA_MAX_LINE_LENGTH]; \
const double n_ = (n); \
std::snprintf(buf, SLHA_MAX_LINE_LENGTH, scale_formatter, n_); \
return std::string(buf); \
}()
Definition at line 118 of file slha_format.hpp. ◆ FORMAT_SPINFO
Value:
[&] { \
char buf[SLHA_MAX_LINE_LENGTH]; \
const int n_ = (n); \
const std::string str_ = (str); \
std::snprintf(buf, SLHA_MAX_LINE_LENGTH, spinfo_formatter, n_, \
str_.c_str()); \
return std::string(buf); \
}()
Definition at line 136 of file slha_format.hpp. ◆ FORMAT_TOTAL_WIDTH
Value:
[&] { \
char buf[SLHA_MAX_LINE_LENGTH]; \
const int pdg_ = (pdg); \
const double width_ = (width); \
const std::string name_ = (name); \
std::snprintf(buf, SLHA_MAX_LINE_LENGTH, format_total_width, \
pdg_, width_, name_.c_str()); \
return std::string(buf); \
}()
Definition at line 185 of file slha_format.hpp. ◆ FORMAT_VECTOR
Value:
[&] { \
char buf[SLHA_MAX_LINE_LENGTH]; \
const int i_ = (i); \
const double entry_ = (entry); \
const std::string name_ = (name); \
std::snprintf(buf, SLHA_MAX_LINE_LENGTH, vector_formatter, i_, entry_, \
name_.c_str()); \
return std::string(buf); \
}()
Definition at line 96 of file slha_format.hpp. ◆ FORMAT_WILSON_COEFFICIENTS
Value:
[&] { \
char buf[SLHA_MAX_LINE_LENGTH]; \
const std::string f_ = (f); \
const std::string m_ = (m); \
const int x_ = (x); \
const int y_ = (y); \
const int ph_ = (ph); \
const double entry_ = (entry); \
const std::string name_ = (name); \
std::snprintf(buf, SLHA_MAX_LINE_LENGTH, wilson_formatter, f_.c_str(), \
m_.c_str(), x_, y_, ph_, entry_, name_.c_str()); \
return std::string(buf); \
}()
Definition at line 170 of file slha_format.hpp. Generated on Sun Apr 6 2025 11:10:37 for FlexibleSUSY by |