|
#include "slha_io.hpp"
#include "error.hpp"
#include "ew_input.hpp"
#include "logger.hpp"
#include "lowe.h"
#include "numerics2.hpp"
#include "physical_input.hpp"
#include "pmns.hpp"
#include "slhaea.h"
#include "spectrum_generator_settings.hpp"
#include "observables/l_to_l_conversion/settings.hpp"
#include "decays/flexibledecay_settings.hpp"
#include "string_conversion.hpp"
#include "string_format.hpp"
#include <algorithm>
#include <cmath>
#include <complex>
#include <fstream>
#include <iostream>
#include <sstream>
#include <string>
Go to the source code of this file.
|
#define | DECAY_FERMION_IM(PDG1, PDG2, CHANNEL) (ss << (!effC.CHANNEL.first.empty() ? FORMAT_EFFECTIVECOUPLINGS(effC.pdgid, PDG1, PDG2, std::imag(effC.CHANNEL.second), effC.CHANNEL.first + "/SM with mhSM = m" + effC.particle) : "")) |
|
#define | DECAY_FERMION_RE(PDG1, PDG2, CHANNEL) (ss << (!effC.CHANNEL.first.empty() ? FORMAT_EFFECTIVECOUPLINGS(effC.pdgid, PDG1, PDG2, std::real(effC.CHANNEL.second), effC.CHANNEL.first + "/SM with mhSM = m" + effC.particle) : "")) |
|
#define | DECAY_VBOSON(PDG1, PDG2, CHANNEL) (ss << (!effC.CHANNEL.first.empty() ? FORMAT_EFFECTIVECOUPLINGS(effC.pdgid, PDG1, PDG2, effC.CHANNEL.second, effC.CHANNEL.first + "/SM with mhSM = m" + effC.particle) : "")) |
|
|
int | flexiblesusy::anonymous_namespace{slha_io.cpp}::column_major_index (int r, int c, int, int cols) |
|
template<typename T > |
std::string | flexiblesusy::detail::format_matrix (const std::string &name, const T *a, const std::string &symbol, int rows, int cols) |
|
template<typename T > |
std::string | flexiblesusy::detail::format_matrix_imag (const std::string &name, const T *a, const std::string &symbol, int rows, int cols) |
|
template<typename T > |
std::string | flexiblesusy::detail::format_vector (const std::string &name, const T *a, const std::string &symbol, int rows) |
|
template<typename T > |
std::string | flexiblesusy::detail::format_vector_imag (const std::string &name, const T *a, const std::string &symbol, int rows) |
|
void | flexiblesusy::anonymous_namespace{slha_io.cpp}::process_flexibledecay_tuple (FlexibleDecay_settings &settings, int key, double value) |
|
void | flexiblesusy::anonymous_namespace{slha_io.cpp}::process_flexiblesusy_tuple (Spectrum_generator_settings &settings, int key, double value) |
|
void | flexiblesusy::anonymous_namespace{slha_io.cpp}::process_flexiblesusyinput_tuple (Physical_input &input, int key, double value) |
|
void | flexiblesusy::anonymous_namespace{slha_io.cpp}::process_ltolconversion_tuple (LToLConversion_settings &settings, int key, double value) |
|
void | flexiblesusy::anonymous_namespace{slha_io.cpp}::process_modsel_tuple (SLHA_io::Modsel &modsel, int key, double value) |
|
void | flexiblesusy::anonymous_namespace{slha_io.cpp}::process_sminputs_tuple (softsusy::QedQcd &qedqcd, int key, double value) |
|
void | flexiblesusy::anonymous_namespace{slha_io.cpp}::process_upmnsin_tuple (PMNS_parameters &pmns_parameters, int key, double value) |
|
void | flexiblesusy::anonymous_namespace{slha_io.cpp}::process_vckmin_tuple (SLHA_io::CKM_wolfenstein &ckm_wolfenstein, int key, double value) |
|
template<typename T > |
double | flexiblesusy::detail::read_matrix_ (const SLHAea::Coll &data, const std::string &block_name, T *a, int rows, int cols) |
|
bool | flexiblesusy::detail::read_scale (const SLHAea::Line &line, double &scale) |
|
template<typename T > |
double | flexiblesusy::detail::read_vector_ (const SLHAea::Coll &data, const std::string &block_name, T *a, int len) |
|
int | flexiblesusy::anonymous_namespace{slha_io.cpp}::round (double a) noexcept |
|
◆ DECAY_FERMION_IM
#define DECAY_FERMION_IM |
( |
|
PDG1, |
|
|
|
PDG2, |
|
|
|
CHANNEL |
|
) |
| (ss << (!effC.CHANNEL.first.empty() ? FORMAT_EFFECTIVECOUPLINGS(effC.pdgid, PDG1, PDG2, std::imag(effC.CHANNEL.second), effC.CHANNEL.first + "/SM with mhSM = m" + effC.particle) : "")) |
◆ DECAY_FERMION_RE
#define DECAY_FERMION_RE |
( |
|
PDG1, |
|
|
|
PDG2, |
|
|
|
CHANNEL |
|
) |
| (ss << (!effC.CHANNEL.first.empty() ? FORMAT_EFFECTIVECOUPLINGS(effC.pdgid, PDG1, PDG2, std::real(effC.CHANNEL.second), effC.CHANNEL.first + "/SM with mhSM = m" + effC.particle) : "")) |
◆ DECAY_VBOSON
#define DECAY_VBOSON |
( |
|
PDG1, |
|
|
|
PDG2, |
|
|
|
CHANNEL |
|
) |
| (ss << (!effC.CHANNEL.first.empty() ? FORMAT_EFFECTIVECOUPLINGS(effC.pdgid, PDG1, PDG2, effC.CHANNEL.second, effC.CHANNEL.first + "/SM with mhSM = m" + effC.particle) : "")) |
|