GM2Calc 2.3.0
Loading...
Searching...
No Matches
gm2_slha_io.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_SLHA_IO_HPP
20#define GM2_SLHA_IO_HPP
21
22#include "gm2calc/gm2_error.hpp"
23
24#include "slhaea.h"
25
26#include <cmath>
27#include <iosfwd>
28#include <string>
29#include <type_traits>
30
31#include <Eigen/Core>
32
33namespace gm2calc {
34
35struct Config_options;
36class SM;
38struct MSSMNoFV_onshell_physical;
39
40namespace thdm {
41struct Config;
42struct Gauge_basis;
43struct Mass_basis;
44}
45
46/**
47 * @class GM2_slha_io
48 * @brief class for reading input files and writing SLHA output files
49 */
51public:
52 using Tuple_processor = std::function<void(int, double)>;
53
54 void clear();
55
56 // reading functions
57 void read_from_file(const std::string&);
58 void read_from_source(const std::string&);
59 void read_from_stream(std::istream&);
60 void read_block(const std::string&, const Tuple_processor&, double scale = 0) const;
61 template <class Derived>
62 void read_block(const std::string&, Eigen::MatrixBase<Derived>&, double scale = 0) const;
63 double read_scale(const std::string&) const;
64
65 // writing functions
66 void write_to_file(const std::string&);
67 void write_to_stream(std::ostream&);
68 void fill_block_entry(const std::string&, unsigned, double, const std::string&);
69 void fill_block_entry(const std::string&, unsigned, const std::string&);
70
71 /// read model parameters (GM2Calc input format)
72 void fill_gm2calc(MSSMNoFV_onshell&) const;
73
74 /// read model parameters (SLHA input format)
75 void fill_slha(MSSMNoFV_onshell&) const;
76
77 /// read SM parameters
78 void fill(SM&) const;
79
80 /// read THDM gauge basis parameters
81 void fill(thdm::Gauge_basis&) const;
82
83 /// read THDM mass basis parameters
84 void fill(thdm::Mass_basis&) const;
85
86 /// read configuration
87 void fill(Config_options&) const;
88
89private:
90 SLHAea::Coll data; ///< SHLA data
91
92 /// convert string to number
93 template <class Scalar>
94 static Scalar convert_to(const std::string&);
95 /// compare block scale
96 static bool is_at_scale(const SLHAea::Block&, double, double eps = 0.01);
97 /// read scale from block
98 static double read_scale(const SLHAea::Block&);
99 /// read block with tuple processor
100 static void read_block(const SLHAea::Block&, const Tuple_processor&);
101 /// read block into Eigen::MatrixBase
102 template <class Derived>
103 static void read_block(const SLHAea::Block&, Eigen::MatrixBase<Derived>&);
104 /// read block into matrix
105 template <class Derived>
106 static void read_matrix(const SLHAea::Block&, Eigen::MatrixBase<Derived>&);
107 /// read block into vector
108 template <class Derived>
109 static void read_vector(const SLHAea::Block&, Eigen::MatrixBase<Derived>&);
110
111 void fill_scale(MSSMNoFV_onshell&) const;
112 void fill_alpha_from_gm2calcinput(MSSMNoFV_onshell&) const;
113 void fill_from_A(MSSMNoFV_onshell&) const;
114 void fill_from_gm2calcinput(MSSMNoFV_onshell&) const;
115 void fill_from_hmix(MSSMNoFV_onshell&) const;
116 void fill_from_mass(MSSMNoFV_onshell_physical&) const;
117 void fill_from_msoft(MSSMNoFV_onshell&) const;
118 void fill_from_sminputs(MSSMNoFV_onshell&) const;
119};
120
121template <class Scalar>
122Scalar GM2_slha_io::convert_to(const std::string& str)
123{
124 Scalar value;
125 try {
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);
142 } else {
143 value = SLHAea::to<Scalar>(str);
144 }
145 if (!std::isfinite(static_cast<double>(value))) {
146 throw 1;
147 }
148 } catch (...) {
149 throw EReadError("non-numeric input");
150 }
151 return value;
152}
153
154/**
155 * Fills a matrix from an SLHA block
156 *
157 * @param block the block
158 * @param matrix matrix to be filled
159 */
160template <class Derived>
161void GM2_slha_io::read_matrix(const SLHAea::Block& block, Eigen::MatrixBase<Derived>& matrix)
162{
163 using Index_t = Eigen::Index;
164 static_assert(std::is_signed<Index_t>::value, "Eigen::Index must be a signed integer type.");
165
166 const Index_t cols = matrix.cols(), rows = matrix.rows();
167
168 for (const auto& line : block) {
169 if (line.is_data_line() && line.size() >= 3) {
170 const Index_t i = convert_to<Index_t>(line[0]) - 1;
171 const Index_t k = convert_to<Index_t>(line[1]) - 1;
172 if (0 <= i && i < rows && 0 <= k && k < cols) {
173 matrix(i, k) = convert_to<double>(line[2]);
174 }
175 }
176 }
177}
178
179/**
180 * Fills a vector from an SLHA block
181 *
182 * @param block the block
183 * @param vector vector to be filled
184 */
185template <class Derived>
186void GM2_slha_io::read_vector(const SLHAea::Block& block, Eigen::MatrixBase<Derived>& vector)
187{
188 using Index_t = Eigen::Index;
189 static_assert(std::is_signed<Index_t>::value, "Eigen::Index must be a signed integer type.");
190
191 const Index_t rows = vector.rows();
192
193 for (const auto& line : block) {
194 if (line.is_data_line() && line.size() >= 2) {
195 const Index_t i = convert_to<Index_t>(line[0]) - 1;
196 if (0 <= i && i < rows) {
197 vector(i) = convert_to<double>(line[1]);
198 }
199 }
200 }
201}
202
203/**
204 * Fills a matrix from an SLHA block
205 *
206 * @param block the block
207 * @param matrix matrix to be filled
208 */
209template <class Derived>
210void GM2_slha_io::read_block(const SLHAea::Block& block, Eigen::MatrixBase<Derived>& matrix)
211{
212 if (matrix.cols() == 1) {
213 GM2_slha_io::read_vector(block, matrix);
214 } else {
215 GM2_slha_io::read_matrix(block, matrix);
216 }
217}
218
219/**
220 * Fills a matrix from a SLHA block
221 *
222 * @param block_name block name
223 * @param matrix matrix to be filled
224 * @param scale (or 0 if scale should be ignored)
225 */
226template <class Derived>
227void GM2_slha_io::read_block(const std::string& block_name,
228 Eigen::MatrixBase<Derived>& matrix,
229 double scale) const
230{
231 auto block = data.find(block_name);
232
233 while (block != data.cend()) {
234 if (is_at_scale(*block, scale)) {
236 }
237
238 ++block;
239 block = data.find(block, data.end(), block_name);
240 }
241}
242
243} // namespace gm2calc
244
245#endif
Container of Lines that resembles a block in a SLHA structure.
Definition slhaea.h:731
Container of Blocks that resembles a complete SLHA structure.
Definition slhaea.h:1614
iterator end()
Returns a read/write iterator that points one past the last element in the Coll.
Definition slhaea.h:1937
iterator find(const key_type &blockName)
Tries to locate a Block in the Coll.
Definition slhaea.h:2024
const_iterator cend() const
Returns a read-only (constant) iterator that points one past the last element in the Coll.
Definition slhaea.h:1955
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.
Definition THDM.hpp:37