GM2Calc 2.3.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
gm2_slha_io.cpp
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#include "gm2_slha_io.hpp"
20
22#include "gm2calc/SM.hpp"
23#include "gm2calc/THDM.hpp"
24
26#include "gm2_log.hpp"
27#include "gm2_numerics.hpp"
28
29#include <cmath>
30#include <fstream>
31#include <iostream>
32#include <limits>
33#include <string>
34
35#include <boost/format.hpp>
36#include <boost/lexical_cast.hpp>
37#include <Eigen/Core>
38
39#define FORMAT_ELEMENT(pdg,value,name) \
40 boost::format(" %5d %16.8E # %s\n") % (pdg) % (value) % (name)
41#define FORMAT_SPINFO(n,str) \
42 boost::format(" %5d %s\n") % (n) % (str)
43
44namespace gm2calc {
45
46namespace {
47
48 struct HMIX_data {
49 double mu{0.0};
50 double tanb{0.0};
51 double v{0.0};
52 double mA2{0.0};
53 };
54
55 struct GM2CalcInput_data {
56 double alpha_MZ{0.0};
57 double alpha_thompson{0.0};
58 };
59
60 struct CKM_wolfenstein {
61 double lambda{0.0};
62 double A{0.0};
63 double rho{0.0};
64 double eta{0.0};
65 };
66
67 void process_gm2calcconfig_tuple(Config_options& /*config_options*/, int /*key*/, double /*value*/);
68 void process_gm2calcinput_tuple(GM2CalcInput_data& /*data*/, int /*key*/, double /*value*/);
69 void process_gm2calcinput_tuple(MSSMNoFV_onshell& /*model*/, int /*key*/, double /*value*/);
70 void process_gm2calcinput_tuple(gm2calc::SM& /*model*/, int /*key*/, double /*value*/);
71 void process_sminputs_tuple(MSSMNoFV_onshell& /*model*/, int /*key*/, double /*value*/);
72 void process_sminputs_tuple(gm2calc::SM& /* sm */, int /* key */, double /* value */);
73 void process_hmix_tuple(HMIX_data& /*data*/, int /*key*/, double /*value*/);
74 void process_mass_tuple(MSSMNoFV_onshell_physical& /*physical*/, int /*key*/, double /*value*/);
75 void process_mass_tuple(gm2calc::SM& /* sm */, int /* key */, double /* value */);
76 void process_mass_tuple(gm2calc::thdm::Mass_basis& /* basis */, int /* key */, double /* value */);
77 void process_minpar_tuple(gm2calc::thdm::Gauge_basis& /* basis */, int /* key */, double /* value */);
78 void process_minpar_tuple(gm2calc::thdm::Mass_basis& /* basis */, int /* key */, double /* value */);
79 void process_msoft_tuple(MSSMNoFV_onshell& /*model*/, int /*key*/, double /*value*/);
80 void process_vckm_tuple(CKM_wolfenstein& /* ckm */, int /* key */, double /* value */);
81
82} // anonymous namespace
83
84/**
85 * @brief reads from source
86 *
87 * If source is "-", then read_from_stream() is called. Otherwise,
88 * read_from_file() is called.
89 *
90 * @param source string that specifies the source
91 */
92void GM2_slha_io::read_from_source(const std::string& source)
93{
94 if (source == "-") {
95 read_from_stream(std::cin);
96 } else {
98 }
99}
100
101/**
102 * @brief opens SLHA input file and reads the content
103 * @param file_name SLHA input file name
104 */
106{
107 std::ifstream ifs(file_name);
108 if (ifs.good()) {
109 data.clear();
110 data.read(ifs);
111 } else {
112 throw EReadError("cannot read input file: \"" + file_name + "\"");
113 }
114}
115
116/**
117 * @brief reads SLHA data from a stream
118 * @param istr input stream
119 */
121{
122 data.read(istr);
123}
124
125/**
126 * Reads scale definition from an SLHA block.
127 *
128 * @param block block
129 *
130 * @return scale (or 0 if no scale is defined)
131 */
132double GM2_slha_io::read_scale(const SLHAea::Block& block)
133{
134 double scale = 0.0;
135
136 for (const auto& line : block) {
137 // read scale from block definition
138 if (line.is_block_def() && line.size() > 3 && line[2] == "Q=") {
139 scale = convert_to<double>(line[3]);
140 }
141 }
142
143 return scale;
144}
145
146/**
147 * Reads scale definition from SLHA block.
148 *
149 * @param block_name block name
150 *
151 * @return scale (or 0 if no scale is defined)
152 */
153double GM2_slha_io::read_scale(const std::string& block_name) const
154{
155 double scale = 0.;
156 auto block = data.find(block_name);
157
158 while (block != data.cend()) {
159 scale = GM2_slha_io::read_scale(*block);
160 ++block;
161 block = data.find(block, data.end(), block_name);
162 }
163
164 return scale;
165}
166
167/**
168 * Returns true if the block scale after Q= matches \a scale, false
169 * otherwise. If scale == 0, the functions returns true.
170 *
171 * @param block SLHA block
172 * @param scale scale
173 * @param eps absolute tolerance to treat two scales being the same
174 */
175bool GM2_slha_io::is_at_scale(const SLHAea::Block& block, double scale, double eps)
176{
177 if (is_zero(scale, std::numeric_limits<double>::epsilon())) {
178 return true;
179 }
180
181 const auto block_scale = GM2_slha_io::read_scale(block);
182
183 return is_equal(scale, block_scale, eps);
184}
185
186/**
187 * Applies processor to each (key, value) pair of a SLHA block.
188 * Non-data lines are ignored.
189 *
190 * @param block the block
191 * @param processor tuple processor to be applied
192 */
193void GM2_slha_io::read_block(const SLHAea::Block& block, const Tuple_processor& processor)
194{
195 for (const auto& line : block) {
196 if (line.is_data_line() && line.size() >= 2) {
197 const auto key = convert_to<int>(line[0]);
198 const auto value = convert_to<double>(line[1]);
199 processor(key, value);
200 }
201 }
202}
203
204/**
205 * Applies processor to each (key, value) pair of a SLHA block.
206 * Non-data lines are ignored.
207 *
208 * @param block_name block name
209 * @param processor tuple processor to be applied
210 * @param scale (or 0 if scale should be ignored)
211 */
212void GM2_slha_io::read_block(const std::string& block_name,
214 double scale) const
215{
216 auto block = data.find(block_name);
217
218 while (block != data.cend()) {
219 if (is_at_scale(*block, scale)) {
221 }
222
223 ++block;
224 block = data.find(block, data.end(), block_name);
225 }
226}
227
228void GM2_slha_io::write_to_file(const std::string& file_name)
229{
230 std::ofstream ofs(file_name);
232}
233
235{
236 if (ostr.good()) {
237 ostr << data;
238 } else {
239 ERROR("cannot write SLHA file");
240 }
241}
242
243/**
244 * Fills a block entry with a value. If the block or the entry do not
245 * exist, the block / entry is created.
246 *
247 * @param block_name block name
248 * @param entry number of the entry
249 * @param value value
250 * @param description comment
251 */
253 unsigned entry, double value,
254 const std::string& description)
255{
256 auto block = data.find(block_name);
257
258 if (block == data.cend()) {
259 SLHAea::Block block;
260 block.str("Block " + block_name);
261 data.push_back(block);
262 }
263
264 data[block_name][entry] = (FORMAT_ELEMENT(entry, value, description)).str();
265}
266
267/**
268 * Fills a block entry with a string. If the block or the entry do
269 * not exist, the block / entry is created.
270 *
271 * @param block_name block name
272 * @param entry number of the entry
273 * @param description comment
274 */
276 unsigned entry,
277 const std::string& description)
278{
279 auto block = data.find(block_name);
280
281 if (block == data.cend()) {
282 SLHAea::Block block;
283 block.str("Block " + block_name);
284 data.push_front(block);
285 }
286
288}
289
290void GM2_slha_io::fill_from_msoft(MSSMNoFV_onshell& model) const
291{
292 GM2_slha_io::Tuple_processor processor = [&model] (int key, double value) {
293 return process_msoft_tuple(model, key, value);
294 };
295
296 read_block("MSOFT", processor, model.get_scale());
297}
298
299void GM2_slha_io::fill_from_A(MSSMNoFV_onshell& model) const
300{
301 const double scale = model.get_scale();
302
303 {
304 Eigen::Matrix<double,3,3> Ae(Eigen::Matrix<double,3,3>::Zero());
305 read_block("AE", Ae, scale);
306 model.set_Ae(Ae);
307 }
308 {
309 Eigen::Matrix<double,3,3> Au(Eigen::Matrix<double,3,3>::Zero());
310 read_block("AU", Au, scale);
311 model.set_Au(Au);
312 }
313 {
314 Eigen::Matrix<double,3,3> Ad(Eigen::Matrix<double,3,3>::Zero());
315 read_block("AD", Ad, scale);
316 model.set_Ad(Ad);
317 }
318}
319
320void GM2_slha_io::fill_from_hmix(MSSMNoFV_onshell& model) const
321{
322 HMIX_data hmix;
323
324 GM2_slha_io::Tuple_processor processor = [&hmix] (int key, double value) {
325 return process_hmix_tuple(hmix, key, value);
326 };
327
328 read_block("HMIX", processor, model.get_scale());
329
330 const double tanb = hmix.tanb;
331 const double scb = tanb / (1 + tanb*tanb); // sin(beta)*cos(beta)
332
333 model.set_Mu(hmix.mu);
334 model.set_TB(hmix.tanb);
335 model.set_BMu(hmix.mA2 * scb);
336}
337
338void GM2_slha_io::fill_scale(MSSMNoFV_onshell& model) const
339{
340 const double eps = std::numeric_limits<double>::epsilon();
341 const double scale = read_scale("HMIX");
342
343 if (is_zero(scale, eps)) {
344 throw EInvalidInput("Could not determine renormalization scale"
345 " from HMIX block");
346 }
347
348 model.set_scale(scale);
349}
350
351void GM2_slha_io::fill_from_sminputs(MSSMNoFV_onshell& model) const
352{
353 GM2_slha_io::Tuple_processor processor = [&model] (int key, double value) {
354 return process_sminputs_tuple(model, key, value);
355 };
356
357 read_block("SMINPUTS", processor);
358}
359
360void GM2_slha_io::fill_from_mass(MSSMNoFV_onshell_physical& physical) const
361{
362 GM2_slha_io::Tuple_processor processor = [&physical] (int key, double value) {
363 return process_mass_tuple(physical, key, value);
364 };
365
366 read_block("MASS", processor);
367 read_block("NMIX", physical.ZN);
368 read_block("SMUMIX", physical.ZM);
369
370 physical.convert_to_hk();
371}
372
373void GM2_slha_io::fill_alpha_from_gm2calcinput(MSSMNoFV_onshell& model) const
374{
375 GM2CalcInput_data data;
376
377 GM2_slha_io::Tuple_processor processor = [&data] (int key, double value) {
378 return process_gm2calcinput_tuple(data, key, value);
379 };
380
381 read_block("GM2CalcInput", processor);
382
383 if (data.alpha_MZ > std::numeric_limits<double>::epsilon()) {
384 model.set_alpha_MZ(data.alpha_MZ);
385 }
386
387 if (data.alpha_thompson > std::numeric_limits<double>::epsilon()) {
388 model.set_alpha_thompson(data.alpha_thompson);
389 }
390}
391
392/**
393 * Reads the GM2CalcInput block and fills the model parameter class.
394 *
395 * This function assumes that MW(pole) and MZ(pole) are non-zero.
396 */
397void GM2_slha_io::fill_from_gm2calcinput(MSSMNoFV_onshell& model) const
398{
399 GM2_slha_io::Tuple_processor processor = [&model] (int key, double value) {
400 return process_gm2calcinput_tuple(model, key, value);
401 };
402
403 read_block("GM2CalcInput", processor);
404}
405
406/**
407 * Reads model parameters in GM2Calc format from GM2CalcInput and
408 * SMINPUTS blocks
409 *
410 * @param model model
411 */
413{
414 fill_from_sminputs(model);
415 fill_from_gm2calcinput(model);
416}
417
418/**
419 * Reads model parameters in SLHA format (from SLHA and GM2CalcInput
420 * input blocks)
421 *
422 * @param model model
423 */
425{
426 // read all pole masses (including MW) from SMINPUTS
427 fill_from_sminputs(model);
428 fill_from_mass(model.get_physical());
429 fill_scale(model);
430 fill_from_hmix(model);
431 fill_from_A(model);
432 fill_from_msoft(model);
433 fill_alpha_from_gm2calcinput(model);
434}
435
436/**
437 * Reads SM parameters
438 *
439 * @param sm SM class
440 */
442{
443 CKM_wolfenstein ckm;
444
445 GM2_slha_io::Tuple_processor sminputs_processor = [&sm] (int key, double value) {
446 return process_sminputs_tuple(sm, key, value);
447 };
448 GM2_slha_io::Tuple_processor mass_processor = [&sm] (int key, double value) {
449 return process_mass_tuple(sm, key, value);
450 };
451 GM2_slha_io::Tuple_processor gm2calcinput_processor = [&sm] (int key, double value) {
452 return process_gm2calcinput_tuple(sm, key, value);
453 };
454 GM2_slha_io::Tuple_processor vckm_processor = [&ckm] (int key, double value) {
455 return process_vckm_tuple(ckm, key, value);
456 };
457
458 read_block("SMINPUTS", sminputs_processor);
459 // try to read mW from MASS block
460 read_block("MASS" , mass_processor);
461 // try to read mhSM from GM2CalcInput block
462 read_block("GM2CalcInput", gm2calcinput_processor);
463 // read CKM matrix
464 read_block("VCKMIN" , vckm_processor);
465
466 sm.set_ckm_from_wolfenstein(ckm.lambda, ckm.A, ckm.rho, ckm.eta);
467}
468
469/**
470 * Reads THDM parameters in gauge basis
471 *
472 * @param basis gauge basis
473 */
475{
476 GM2_slha_io::Tuple_processor minpar_processor = [&basis] (int key, double value) {
477 return process_minpar_tuple(basis, key, value);
478 };
479
480 Eigen::Matrix<double,3,3> Delta_u{Eigen::Matrix<double,3,3>::Zero()};
481 Eigen::Matrix<double,3,3> Delta_d{Eigen::Matrix<double,3,3>::Zero()};
482 Eigen::Matrix<double,3,3> Delta_l{Eigen::Matrix<double,3,3>::Zero()};
483 Eigen::Matrix<double,3,3> Pi_u{Eigen::Matrix<double,3,3>::Zero()};
484 Eigen::Matrix<double,3,3> Pi_d{Eigen::Matrix<double,3,3>::Zero()};
485 Eigen::Matrix<double,3,3> Pi_l{Eigen::Matrix<double,3,3>::Zero()};
486
487 read_block("MINPAR", minpar_processor);
488 read_block("GM2CalcTHDMDeltauInput", Delta_u);
489 read_block("GM2CalcTHDMDeltadInput", Delta_d);
490 read_block("GM2CalcTHDMDeltalInput", Delta_l);
491 read_block("GM2CalcTHDMPiuInput", Pi_u);
492 read_block("GM2CalcTHDMPidInput", Pi_d);
493 read_block("GM2CalcTHDMPilInput", Pi_l);
494
495 basis.Delta_u = Delta_u;
496 basis.Delta_d = Delta_d;
497 basis.Delta_l = Delta_l;
498 basis.Pi_u = Pi_u;
499 basis.Pi_d = Pi_d;
500 basis.Pi_l = Pi_l;
501}
502
503/**
504 * Reads THDM parameters in mass basis
505 *
506 * @param basis mass basis
507 */
509{
510 GM2_slha_io::Tuple_processor minpar_processor = [&basis] (int key, double value) {
511 return process_minpar_tuple(basis, key, value);
512 };
513 GM2_slha_io::Tuple_processor mass_processor = [&basis] (int key, double value) {
514 return process_mass_tuple(basis, key, value);
515 };
516
517 Eigen::Matrix<double,3,3> Delta_u{Eigen::Matrix<double,3,3>::Zero()};
518 Eigen::Matrix<double,3,3> Delta_d{Eigen::Matrix<double,3,3>::Zero()};
519 Eigen::Matrix<double,3,3> Delta_l{Eigen::Matrix<double,3,3>::Zero()};
520 Eigen::Matrix<double,3,3> Pi_u{Eigen::Matrix<double,3,3>::Zero()};
521 Eigen::Matrix<double,3,3> Pi_d{Eigen::Matrix<double,3,3>::Zero()};
522 Eigen::Matrix<double,3,3> Pi_l{Eigen::Matrix<double,3,3>::Zero()};
523
524 read_block("MINPAR", minpar_processor);
525 read_block("MASS", mass_processor);
526 read_block("GM2CalcTHDMDeltauInput", Delta_u);
527 read_block("GM2CalcTHDMDeltadInput", Delta_d);
528 read_block("GM2CalcTHDMDeltalInput", Delta_l);
529 read_block("GM2CalcTHDMPiuInput", Pi_u);
530 read_block("GM2CalcTHDMPidInput", Pi_d);
531 read_block("GM2CalcTHDMPilInput", Pi_l);
532
533 basis.Delta_u = Delta_u;
534 basis.Delta_d = Delta_d;
535 basis.Delta_l = Delta_l;
536 basis.Pi_u = Pi_u;
537 basis.Pi_d = Pi_d;
538 basis.Pi_l = Pi_l;
539}
540
541/**
542 * Reads configuration from GM2CalcConfig block
543 *
544 * @param config_options configuration settings
545 */
547{
550 };
551
552 read_block("GM2CalcConfig", processor);
553}
554
555namespace {
556
557bool is_integer(double value)
558{
559 double intpart{0.0};
560 return std::modf(value, &intpart) == 0.0;
561}
562
563template <class Source>
564std::string to_string(Source arg)
565{
566 return boost::lexical_cast<std::string>(arg);
567}
568
569void read_bool(double value, bool& result, const char* error_msg)
570{
571 if (value == 0.0 || value == 1.0) {
572 result = (value != 0.0);
573 } else {
574 throw EInvalidInput(std::string(error_msg) + ": " +
575 gm2calc::to_string(value) +
576 " (allowed values: 0 or 1)");
577 }
578}
579
580template <typename T>
581void read_integer(double value, T& result, T min, T max, const char* error_msg)
582{
583 if (is_integer(value) && value >= min && value <= max) {
584 result = static_cast<T>(static_cast<int>(value));
585 } else {
586 throw EInvalidInput(
587 std::string(error_msg) + ": " + gm2calc::to_string(value) +
588 " (allowed integer values: " + gm2calc::to_string(min) + ",...," +
589 gm2calc::to_string(max) + ")");
590 }
591}
592
593int read_integer(double value)
594{
595 if (is_integer(value)) {
596 return static_cast<int>(value);
597 } else {
598 throw EInvalidInput(gm2calc::to_string(value) + " is not an integer");
599 }
600}
601
602void read_double_non_zero(double value, double& result)
603{
604 const double eps = std::numeric_limits<double>::epsilon();
605
606 if (!is_zero(value, eps)) {
607 result = value;
608 }
609}
610
612 Config_options& config_options, int key, double value)
613{
614 switch (key) {
615 case 0:
616 read_integer(value,
617 config_options.output_format,
618 static_cast<Config_options::E_output_format>(0),
621 "unsupported output format in GM2CalcConfig[0]");
622 break;
623 case 1:
624 read_integer(value, config_options.loop_order, 0U, 2U,
625 "unsupported loop order in GM2CalcConfig[1]");
626 break;
627 case 2:
628 read_bool(value, config_options.tanb_resummation,
629 "unsupported tan(beta) resummation flag value in GM2CalcConfig[2]");
630 break;
631 case 3:
632 read_bool(value, config_options.force_output,
633 "unsupported force output flag value in GM2CalcConfig[3]");
634 break;
635 case 4:
636 read_bool(value, config_options.verbose_output,
637 "unsupported verbose output flag value in GM2CalcConfig[4]");
638 break;
639 case 5:
640 read_bool(value, config_options.calculate_uncertainty,
641 "unsupported uncertainty flag value in GM2CalcConfig[5]");
642 break;
643 case 6:
644 read_bool(value, config_options.running_couplings,
645 "unsupported running couplings flag value in GM2CalcConfig[6]");
646 break;
647 default:
648 WARNING("Unrecognized entry in block GM2CalcConfig: " << key);
649 break;
650 }
651}
652
654 MSSMNoFV_onshell& model, int key, double value)
655{
656 switch (key) {
657 case 0: model.set_scale(value); break;
658 case 1: model.set_alpha_MZ(value); break;
659 case 2: model.set_alpha_thompson(value); break;
660 case 3: model.set_TB( value); break;
661 case 4: model.set_Mu( value); break;
662 case 5: model.set_MassB( value); break;
663 case 6: model.set_MassWB(value); break;
664 case 7: model.set_MassG( value); break;
665 case 8: model.set_MA0( value); break;
666 case 9: model.set_ml2(0, 0, signed_sqr(value)); break;
667 case 10: model.set_ml2(1, 1, signed_sqr(value)); break;
668 case 11: model.set_ml2(2, 2, signed_sqr(value)); break;
669 case 12: model.set_me2(0, 0, signed_sqr(value)); break;
670 case 13: model.set_me2(1, 1, signed_sqr(value)); break;
671 case 14: model.set_me2(2, 2, signed_sqr(value)); break;
672 case 15: model.set_mq2(0, 0, signed_sqr(value)); break;
673 case 16: model.set_mq2(1, 1, signed_sqr(value)); break;
674 case 17: model.set_mq2(2, 2, signed_sqr(value)); break;
675 case 18: model.set_mu2(0, 0, signed_sqr(value)); break;
676 case 19: model.set_mu2(1, 1, signed_sqr(value)); break;
677 case 20: model.set_mu2(2, 2, signed_sqr(value)); break;
678 case 21: model.set_md2(0, 0, signed_sqr(value)); break;
679 case 22: model.set_md2(1, 1, signed_sqr(value)); break;
680 case 23: model.set_md2(2, 2, signed_sqr(value)); break;
681 case 24: model.set_Ae( 0, 0, value); break;
682 case 25: model.set_Ae( 1, 1, value); break;
683 case 26: model.set_Ae( 2, 2, value); break;
684 case 27: model.set_Ad( 0, 0, value); break;
685 case 28: model.set_Ad( 1, 1, value); break;
686 case 29: model.set_Ad( 2, 2, value); break;
687 case 30: model.set_Au( 0, 0, value); break;
688 case 31: model.set_Au( 1, 1, value); break;
689 case 32: model.set_Au( 2, 2, value); break;
690 case 33: /* mhSM */ break;
691 default:
692 WARNING("Unrecognized entry in block GM2CalcInput: " << key);
693 break;
694 }
695}
696
698 GM2CalcInput_data& data, int key, double value)
699{
700 switch (key) {
701 case 0: /* scale */ break;
702 case 1: data.alpha_MZ = value; break;
703 case 2: data.alpha_thompson = value; break;
704 default:
705 break;
706 }
707}
708
710 gm2calc::SM& sm, int key, double value)
711{
712 switch (key) {
713 case 33: sm.set_mh(value); break;
714 default:
715 break;
716 }
717}
718
720 MSSMNoFV_onshell& model, int key, double value)
721{
722 const double Pi = 3.14159265358979323846;
723 MSSMNoFV_onshell_physical& physical = model.get_physical();
724
725 switch (key) {
726 case 1: /* alpha_em(MZ) */ break;
727 case 2: /* G_F */ break;
728 case 3: model.set_g3(std::sqrt(4*Pi*value)); break;
729 case 4: physical.MVZ = value; break;
730 case 5: physical.MFb = value; break;
731 case 6: physical.MFt = value; break;
732 case 7: physical.MFtau = value; break;
733 case 8: physical.MFvt = value; break;
734 case 9: physical.MVWm = value; break;
735 case 11: physical.MFe = value; break;
736 case 12: physical.MFve = value; break;
737 case 13: physical.MFm = value; break;
738 case 14: physical.MFvm = value; break;
739 case 21: physical.MFd = value; break;
740 case 23: physical.MFs = value; break;
741 case 22: physical.MFu = value; break;
742 case 24: physical.MFc = value; break;
743 default:
744 WARNING("Unrecognized entry in block SMINPUTS: " << key);
745 break;
746 }
747}
748
750 gm2calc::SM& sm, int key, double value)
751{
752 switch (key) {
753 case 1: sm.set_alpha_em_mz(1/value); break;
754 case 2: /* G_F */ break;
755 case 3: sm.set_alpha_s_mz(value); break;
756 case 4: sm.set_mz(value); break;
757 case 5: sm.set_md(2, value); break;
758 case 6: sm.set_mu(2, value); break;
759 case 7: sm.set_ml(2, value); break;
760 case 8: sm.set_mv(2, value); break;
761 case 9: sm.set_mw(value); break;
762 case 11: sm.set_ml(0, value); break;
763 case 12: sm.set_mv(0, value); break;
764 case 13: sm.set_ml(1, value); break;
765 case 14: sm.set_mv(1, value); break;
766 case 21: sm.set_md(0, value); break;
767 case 22: sm.set_mu(0, value); break;
768 case 23: sm.set_md(1, value); break;
769 case 24: sm.set_mu(1, value); break;
770 default:
771 WARNING("Unrecognized entry in block SMINPUTS: " << key);
772 break;
773 }
774}
775
777 HMIX_data& data, int key, double value)
778{
779 switch (key) {
780 case 1: data.mu = value ; break;
781 case 2: data.tanb = value; break;
782 case 3: data.v = value ; break;
783 case 4: data.mA2 = value ; break;
784 default:
785 WARNING("Unrecognized entry in block HMIX: " << key);
786 break;
787 }
788}
789
791 MSSMNoFV_onshell& model, int key, double value)
792{
793 switch (key) {
794 case 21: model.set_mHd2(value) ; break;
795 case 22: model.set_mHu2(value) ; break;
796 case 31: model.set_ml2(0, 0, signed_sqr(value)); break;
797 case 32: model.set_ml2(1, 1, signed_sqr(value)); break;
798 case 33: model.set_ml2(2, 2, signed_sqr(value)); break;
799 case 34: model.set_me2(0, 0, signed_sqr(value)); break;
800 case 35: model.set_me2(1, 1, signed_sqr(value)); break;
801 case 36: model.set_me2(2, 2, signed_sqr(value)); break;
802 case 41: model.set_mq2(0, 0, signed_sqr(value)); break;
803 case 42: model.set_mq2(1, 1, signed_sqr(value)); break;
804 case 43: model.set_mq2(2, 2, signed_sqr(value)); break;
805 case 44: model.set_mu2(0, 0, signed_sqr(value)); break;
806 case 45: model.set_mu2(1, 1, signed_sqr(value)); break;
807 case 46: model.set_mu2(2, 2, signed_sqr(value)); break;
808 case 47: model.set_md2(0, 0, signed_sqr(value)); break;
809 case 48: model.set_md2(1, 1, signed_sqr(value)); break;
810 case 49: model.set_md2(2, 2, signed_sqr(value)); break;
811 case 1: model.set_MassB( value) ; break;
812 case 2: model.set_MassWB( value) ; break;
813 case 3: model.set_MassG( value) ; break;
814 default:
815 WARNING("Unrecognized entry in block MSOFT: " << key);
816 break;
817 }
818}
819
821 MSSMNoFV_onshell_physical& physical, int key, double value)
822{
823 switch (key) {
824 case 1000012: physical.MSveL = value; break;
825 case 1000014: physical.MSvmL = value; break;
826 case 1000016: physical.MSvtL = value; break;
827 case 1000001: physical.MSd(0) = value; break;
828 case 2000001: physical.MSd(1) = value; break;
829 case 1000002: physical.MSu(0) = value; break;
830 case 2000002: physical.MSu(1) = value; break;
831 case 1000011: physical.MSe(0) = value; break;
832 case 2000011: physical.MSe(1) = value; break;
833 case 1000013: physical.MSm(0) = value; break;
834 case 2000013: physical.MSm(1) = value; break;
835 case 1000015: physical.MStau(0) = value; break;
836 case 2000015: physical.MStau(1) = value; break;
837 case 1000003: physical.MSs(0) = value; break;
838 case 2000003: physical.MSs(1) = value; break;
839 case 1000004: physical.MSc(0) = value; break;
840 case 2000004: physical.MSc(1) = value; break;
841 case 1000005: physical.MSb(0) = value; break;
842 case 2000005: physical.MSb(1) = value; break;
843 case 1000006: physical.MSt(0) = value; break;
844 case 2000006: physical.MSt(1) = value; break;
845 case 24 : read_double_non_zero(value, physical.MVWm); break;
846 case 25 : physical.Mhh(0) = value; break;
847 case 35 : physical.Mhh(1) = value; break;
848 case 36 : physical.MAh(1) = value; break;
849 case 37 : physical.MHpm(1) = value; break;
850 case 1000021: physical.MGlu = value; break;
851 case 1000022: physical.MChi(0) = value; break;
852 case 1000023: physical.MChi(1) = value; break;
853 case 1000025: physical.MChi(2) = value; break;
854 case 1000035: physical.MChi(3) = value; break;
855 case 1000024: physical.MCha(0) = value; break;
856 case 1000037: physical.MCha(1) = value; break;
857 default:
858 break;
859 }
860}
861
863 gm2calc::SM& sm, int key, double value)
864{
865 switch (key) {
866 case 24: sm.set_mw(value); break;
867 default:
868 break;
869 }
870}
871
873 gm2calc::thdm::Mass_basis& basis, int key, double value)
874{
875 switch (key) {
876 case 25: basis.mh = value; break;
877 case 35: basis.mH = value; break;
878 case 36: basis.mA = value; break;
879 case 37: basis.mHp = value; break;
880 default:
881 break;
882 }
883}
884
886 gm2calc::thdm::Gauge_basis& basis, int key, double value)
887{
888 switch (key) {
889 case 3: basis.tan_beta = value; break;
890 case 11: basis.lambda(0) = value; break;
891 case 12: basis.lambda(1) = value; break;
892 case 13: basis.lambda(2) = value; break;
893 case 14: basis.lambda(3) = value; break;
894 case 15: basis.lambda(4) = value; break;
895 case 16: basis.lambda(5) = value; break;
896 case 17: basis.lambda(6) = value; break;
897 case 18: basis.m122 = value; break;
898 case 21: basis.zeta_u = value; break;
899 case 22: basis.zeta_d = value; break;
900 case 23: basis.zeta_l = value; break;
901 case 24: basis.yukawa_type = thdm::int_to_cpp_yukawa_type(read_integer(value));
902 break;
903 default:
904 break;
905 }
906}
907
909 gm2calc::thdm::Mass_basis& basis, int key, double value)
910{
911 switch (key) {
912 case 3: basis.tan_beta = value; break;
913 case 16: basis.lambda_6 = value; break;
914 case 17: basis.lambda_7 = value; break;
915 case 18: basis.m122 = value; break;
916 case 20: basis.sin_beta_minus_alpha = value; break;
917 case 21: basis.zeta_u = value; break;
918 case 22: basis.zeta_d = value; break;
919 case 23: basis.zeta_l = value; break;
920 case 24: basis.yukawa_type = thdm::int_to_cpp_yukawa_type(read_integer(value));
921 break;
922 default:
923 break;
924 }
925}
926
928 CKM_wolfenstein& ckm, int key, double value)
929{
930 switch (key) {
931 case 1: ckm.lambda = value; break;
932 case 2: ckm.A = value; break;
933 case 3: ckm.rho = value; break;
934 case 4: ckm.eta = value; break;
935 default:
936 break;
937 }
938}
939
940} // anonymous namespace
941
942} // namespace gm2calc
Container of Lines that resembles a block in a SLHA structure.
Definition slhaea.h:731
Block & str(const std::string &block)
Assigns content from a string to the Block.
Definition slhaea.h:868
iterator end()
Returns a read/write iterator that points one past the last element in the Coll.
Definition slhaea.h:1937
void clear()
Erases all the elements in the Coll.
Definition slhaea.h:2323
void push_front(const value_type &block)
Adds a Block to the begin of the Coll.
Definition slhaea.h:2175
iterator find(const key_type &blockName)
Tries to locate a Block in the Coll.
Definition slhaea.h:2024
Coll & read(std::istream &is)
Assigns content from an input stream to the Coll.
Definition slhaea.h:1669
void push_back(const value_type &block)
Adds a Block to the end of the Coll.
Definition slhaea.h:2148
const_iterator cend() const
Returns a read-only (constant) iterator that points one past the last element in the Coll.
Definition slhaea.h:1955
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
void set_alpha_em_mz(double a) noexcept
Definition SM.hpp:33
void set_mz(double m) noexcept
Definition SM.hpp:37
void set_alpha_s_mz(double a) noexcept
Definition SM.hpp:34
void set_mv(const Eigen::Matrix< double, 3, 1 > &m) noexcept
Definition SM.hpp:40
void set_md(const Eigen::Matrix< double, 3, 1 > &m) noexcept
Definition SM.hpp:39
void set_ml(const Eigen::Matrix< double, 3, 1 > &m) noexcept
Definition SM.hpp:41
void set_mw(double m) noexcept
Definition SM.hpp:36
void set_mh(double m) noexcept
Definition SM.hpp:35
void set_mu(const Eigen::Matrix< double, 3, 1 > &m) noexcept
Definition SM.hpp:38
void set_ckm_from_wolfenstein(double lambdaW, double aCkm, double rhobar, double etabar)
Definition SM.cpp:143
#define WARNING(message)
Definition gm2_log.hpp:30
#define ERROR(message)
Definition gm2_log.hpp:24
double A
double v
double lambda
double rho
double mA2
double tanb
#define FORMAT_ELEMENT(pdg, value, name)
double mu
double alpha_thompson
#define FORMAT_SPINFO(n, str)
double eta
double alpha_MZ
struct MSSMNoFV_onshell MSSMNoFV_onshell
std::string to_string(const Source &arg)
Converts an object of type Source to a string.
Definition slhaea.h:62
Yukawa_type int_to_cpp_yukawa_type(int yukawa_type)
convert int to thdm::Yukawa_type
Definition THDM.cpp:45
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)
bool is_zero(const Eigen::ArrayBase< Derived > &a, double eps)
bool is_equal(const Eigen::ArrayBase< Derived > &a, const Eigen::ArrayBase< Derived > &b, double precision_goal)
double signed_sqr(double x) noexcept
returns square of number, times sign
configuration for the calculation of