19#ifndef GM2_SLHA_IO_HPP
20#define GM2_SLHA_IO_HPP
38struct MSSMNoFV_onshell_physical;
61 template <
class Derived>
62 void read_block(
const std::string&, Eigen::MatrixBase<Derived>&,
double scale = 0)
const;
68 void fill_block_entry(
const std::string&,
unsigned,
double,
const std::string&);
93 template <
class Scalar>
94 static Scalar convert_to(
const std::string&);
102 template <
class Derived>
105 template <
class Derived>
106 static void read_matrix(
const SLHAea::Block&, Eigen::MatrixBase<Derived>&);
108 template <
class Derived>
109 static void read_vector(
const SLHAea::Block&, Eigen::MatrixBase<Derived>&);
121template <
class Scalar>
122Scalar GM2_slha_io::convert_to(
const std::string& str)
126 if (std::is_same<Scalar, int>::value) {
127 value = std::stoi(str);
128 }
else if (std::is_same<Scalar, long>::value) {
129 value = std::stol(str);
130 }
else if (std::is_same<Scalar, long long>::value) {
131 value = std::stoll(str);
132 }
else if (std::is_same<Scalar, unsigned long>::value) {
133 value = std::stoul(str);
134 }
else if (std::is_same<Scalar, unsigned long long>::value) {
135 value = std::stoull(str);
136 }
else if (std::is_same<Scalar, float>::value) {
137 value = std::stof(str);
138 }
else if (std::is_same<Scalar, double>::value) {
139 value = std::stod(str);
140 }
else if (std::is_same<Scalar, long double>::value) {
141 value = std::stold(str);
143 value = SLHAea::to<Scalar>(str);
145 if (!std::isfinite(
static_cast<double>(value))) {
149 throw EReadError(
"non-numeric input");
160template <
class Derived>
161void GM2_slha_io::read_matrix(
const SLHAea::Block& block, Eigen::MatrixBase<Derived>&
matrix)
164 static_assert(std::is_signed<Index_t>::value,
"Eigen::Index must be a signed integer type.");
168 for (
const auto& line : block) {
169 if (line.is_data_line() && line.size() >= 3) {
185template <
class Derived>
186void GM2_slha_io::read_vector(
const SLHAea::Block& block, Eigen::MatrixBase<Derived>&
vector)
189 static_assert(std::is_signed<Index_t>::value,
"Eigen::Index must be a signed integer type.");
193 for (
const auto& line : block) {
194 if (line.is_data_line() && line.size() >= 2) {
209template <
class Derived>
213 GM2_slha_io::read_vector(block,
matrix);
215 GM2_slha_io::read_matrix(block,
matrix);
226template <
class Derived>
228 Eigen::MatrixBase<Derived>&
matrix,
233 while (block != data.
cend()) {
234 if (is_at_scale(*block, scale)) {
Container of Lines that resembles a block in a SLHA structure.
Container of Blocks that resembles a complete SLHA structure.
iterator end()
Returns a read/write iterator that points one past the last element in the Coll.
iterator find(const key_type &blockName)
Tries to locate a Block in the Coll.
const_iterator cend() const
Returns a read-only (constant) iterator that points one past the last element in the Coll.
class for reading input files and writing SLHA output files
void read_from_source(const std::string &)
reads from source
double read_scale(const std::string &) const
Reads scale definition from SLHA block.
void write_to_file(const std::string &)
void fill_block_entry(const std::string &, unsigned, double, const std::string &)
Fills a block entry with a value.
void read_block(const std::string &, const Tuple_processor &, double scale=0) const
Applies processor to each (key, value) pair of a SLHA block.
void read_from_file(const std::string &)
opens SLHA input file and reads the content
void write_to_stream(std::ostream &)
void fill_slha(MSSMNoFV_onshell &) const
read model parameters (SLHA input format)
void fill_gm2calc(MSSMNoFV_onshell &) const
read model parameters (GM2Calc input format)
std::function< void(int, double)> Tuple_processor
void fill(SM &) const
read SM parameters
void read_from_stream(std::istream &)
reads SLHA data from a stream
contains the MSSMNoFV parameters in the on-shell scheme
struct MSSMNoFV_onshell MSSMNoFV_onshell
void svd_eigen(const Eigen::Matrix< Scalar, M, N > &m, Eigen::Array< Real,(((M)<(N)) ?(M) :(N)), 1 > &s, Eigen::Matrix< Scalar, M, M > *u, Eigen::Matrix< Scalar, N, N > *vh)
configuration for the calculation of
MSSMNoFV pole masses and corresponding mixings.
Configuration options for the THDM.