GM2Calc 2.3.0
Loading...
Searching...
No Matches
gm2calc.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 "gm2calc/gm2_1loop.hpp"
20#include "gm2calc/gm2_2loop.hpp"
21#include "gm2calc/gm2_error.hpp"
23#include "gm2calc/gm2_version.h"
25#include "gm2calc/THDM.hpp"
26
31#include "gm2_log.hpp"
32#include "gm2_slha_io.hpp"
33
34#include <iomanip>
35#include <iostream>
36#include <limits>
37#include <string>
38#include <tuple>
39#include <utility>
40
41#define FORMAT_AMU(amu) std::scientific << std::setprecision(8) << std::setw(15) << (amu)
42#define FORMAT_DEL(amu) std::scientific << std::setprecision(8) << std::setw(14) << (amu)
43#define FORMAT_PCT(pct) std::fixed << std::setprecision(1) << std::setw(2) << (pct)
44
45namespace {
46
47/// MSSMNoFV reader function
48using MSSMNoFV_reader = std::function<void(
50
51/// MSSMNoFV writer function
52using MSSMNoFV_writer = std::function<void(
54 gm2calc::GM2_slha_io& slha_io)>;
55
56/// THDM writer function
57using THDM_writer = std::function<void(const gm2calc::THDM&,
58 const gm2calc::Config_options& options,
59 gm2calc::GM2_slha_io& slha_io)>;
60
61/**
62 * @class Gm2_cmd_line_options
63 * @brief command line options for GM2Calc
64 */
65struct Gm2_cmd_line_options {
66 enum E_input_type { SLHA, GM2Calc, THDM };
67
68 std::string input_source; ///< input source (file name or `-' for stdin)
69 E_input_type input_type{SLHA}; ///< input format (SLHA, GM2Calc or THDM)
70
71 static bool starts_with(const std::string& str, const std::string& prefix) {
72 return str.compare(0, prefix.size(), prefix) == 0;
73 }
74};
75
76void print_usage(const char* program_name)
77{
78 std::cout <<
79 "Usage: " << program_name << " [options]\n"
80 "Options:\n"
81 " --slha-input-file=<source> SLHA input source (file name or - for stdin)\n"
82 " --gm2calc-input-file=<source> GM2Calc input source (file name or - for stdin)\n"
83 " --thdm-input-file=<source> THDM input source (file name or - for stdin)\n"
84 " --help,-h print this help message\n"
85 " --version,-v print version number"
86 "\n";
87}
88
89/**
90 * Checks whether the given string is a specification of an input file
91 * and processes it, if so.
92 *
93 * @param str option string
94 * @param options option struct to modify
95 *
96 * @return true if option string has been processed, false otherwise
97 */
98bool process_input_type(const std::string& str, Gm2_cmd_line_options& options)
99{
100 static const struct Input_file_options {
101 std::string input_source;
102 Gm2_cmd_line_options::E_input_type input_type;
103 } input_file_options[] = {
104 { "--slha-input-file=" , Gm2_cmd_line_options::SLHA },
105 { "--gm2calc-input-file=", Gm2_cmd_line_options::GM2Calc },
106 { "--thdm-input-file=" , Gm2_cmd_line_options::THDM }
107 };
108
109 for (const auto& ifo: input_file_options) {
110 if (Gm2_cmd_line_options::starts_with(str, ifo.input_source)) {
111 options.input_source = str.substr(ifo.input_source.length());
112 options.input_type = ifo.input_type;
113 return true; // option has been processed
114 }
115 }
116
117 return false; // option has not been processed
118}
119
120/**
121 * Parses command line options
122 *
123 * @param argc number of command line arguments
124 * @param argv array of command line arguments
125 *
126 * @return object with extracted information
127 */
128Gm2_cmd_line_options get_cmd_line_options(int argc, const char* argv[])
129{
130 Gm2_cmd_line_options options;
131
132 for (int i = 1; i < argc; ++i) {
133 const std::string option_string(argv[i]);
134
135 if (process_input_type(option_string, options)) {
136 continue;
137 }
138
139 if (option_string == "--help" || option_string == "-h") {
140 print_usage(argv[0]);
141 exit(EXIT_SUCCESS);
142 }
143
144 if (option_string == "--version" || option_string == "-v") {
145 std::cout << GM2CALC_VERSION << '\n';
146 exit(EXIT_SUCCESS);
147 }
148
149 ERROR("Unrecognized command line option: " << option_string);
150 exit(EXIT_FAILURE);
151 }
152
153 return options;
154}
155
156/**
157 * Set the config options to default values, depending on the input
158 * parameter set (chosen by the user).
159 *
160 * If SLHA input format has been selected, the default output format
161 * will be SLHA format. By default \f$a_\mu\f$ will be written to the
162 * block GM2Calc[0].
163 *
164 * If GM2Calc input format has been chosen, the default values set in
165 * \a Config_options are used.
166 *
167 * @param config_options configuration options
168 * @param options command line options
169 */
170void set_to_default(gm2calc::Config_options& config_options,
171 const Gm2_cmd_line_options& options)
172{
173 switch (options.input_type) {
174 case Gm2_cmd_line_options::SLHA:
176 break;
177 case Gm2_cmd_line_options::GM2Calc:
179 break;
180 case Gm2_cmd_line_options::THDM:
182 break;
183 default:
184 throw gm2calc::ESetupError("Unknown input option");
185 break;
186 }
187}
188
189/**
190 * Prints output if an error has occured.
191 *
192 * @param error error object
193 * @param slha_io SLHA object
194 * @param config_options configuration options
195 */
196void print_error(const gm2calc::Error& error,
197 gm2calc::GM2_slha_io& slha_io,
198 const gm2calc::Config_options& config_options)
199{
200 switch (config_options.output_format) {
204 // print SPINFO block with error description
205 slha_io.fill_block_entry("SPINFO", 1, "GM2Calc");
206 slha_io.fill_block_entry("SPINFO", 2, GM2CALC_VERSION);
207 slha_io.fill_block_entry("SPINFO", 4, error.what());
208 slha_io.write_to_stream(std::cout);
209 break;
210 default:
211 ERROR(error.what());
212 break;
213 }
214}
215
216/**
217 * Calculates a_mu for a given set of configuration options (loop
218 * order, tan(beta) resummation).
219 *
220 * @param model model (must be initialized)
221 * @param options configuration options
222 *
223 * @return a_mu
224 */
225double calculate_amu(const gm2calc::MSSMNoFV_onshell& model,
226 const gm2calc::Config_options& options)
227{
228 double result = 0.0;
229
230 if (options.tanb_resummation) {
231 if (options.loop_order > 0) {
232 result += gm2calc::calculate_amu_1loop(model);
233 }
234 if (options.loop_order > 1) {
235 result += gm2calc::calculate_amu_2loop(model);
236 }
237 } else {
238 // no tan(beta) resummation
239 if (options.loop_order > 0) {
241 }
242 if (options.loop_order > 1) {
244 }
245 }
246
247 return result;
248}
249
250/**
251 * Calculates a_mu for a given set of configuration options (loop
252 * order).
253 *
254 * @param model model (must be initialized)
255 * @param options configuration options
256 *
257 * @return a_mu
258 */
259double calculate_amu(const gm2calc::THDM& model,
260 const gm2calc::Config_options& options)
261{
262 double result = 0.0;
263
264 if (options.loop_order > 0) {
265 result += gm2calc::calculate_amu_1loop(model);
266 }
267 if (options.loop_order > 1) {
268 result += gm2calc::calculate_amu_2loop(model);
269 }
270
271 return result;
272}
273
274/**
275 * Calculates uncertainty of a_mu for a given set of configuration
276 * options (loop order, tan(beta) resummation).
277 *
278 * @param model model (must be initialized)
279 * @param options configuration options
280 *
281 * @return a_mu
282 */
283template<class Model>
284double calculate_uncertainty(const Model& model,
285 const gm2calc::Config_options& options)
286{
287 double result = std::numeric_limits<double>::signaling_NaN();
288
289 switch (options.loop_order) {
290 case 0:
292 break;
293 case 1:
295 break;
296 case 2:
298 break;
299 default:
300 ERROR("loop order > 2 not supported!");
301 break;
302 }
303
304 return result;
305}
306
307/**
308 * Reads parameters from SLHA i/o object (SLHA scheme) and initializes
309 * model accordingly.
310 *
311 * @param model model to initialize
312 * @param slha_io SLHA i/o object to read parameters from
313 */
314struct SLHA_reader {
315 void operator()(gm2calc::MSSMNoFV_onshell& model,
316 const gm2calc::GM2_slha_io& slha_io)
317 {
318 slha_io.fill_slha(model);
319 model.convert_to_onshell();
320 }
321};
322
323/**
324 * Reads parameters from SLHA i/o object in GM2Calc-specific input
325 * scheme and initializes model accordingly.
326 *
327 * @param model model to initialize
328 * @param slha_io SLHA i/o object to read parameters from
329 */
330
331struct GM2Calc_reader {
332 void operator()(gm2calc::MSSMNoFV_onshell& model,
333 const gm2calc::GM2_slha_io& slha_io)
334 {
335 slha_io.fill_gm2calc(model);
336 model.calculate_masses();
337 }
338};
339
340/**
341 * Reads THDM parameters from SLHA i/o object and initializes model
342 * accordingly.
343 *
344 * @param model model to initialize
345 * @param slha_io SLHA i/o object to read parameters from
346 */
347
348struct THDM_reader {
349 gm2calc::THDM operator()(const gm2calc::GM2_slha_io& slha_io,
350 const gm2calc::Config_options& options)
351 {
352 gm2calc::SM sm;
353 gm2calc::thdm::Mass_basis mass_basis;
354 gm2calc::thdm::Gauge_basis gauge_basis;
355 slha_io.fill(sm);
356 slha_io.fill(mass_basis);
357 slha_io.fill(gauge_basis);
358
359 gm2calc::thdm::Config thdm_config;
360 thdm_config.force_output = options.force_output;
361 thdm_config.running_couplings = options.running_couplings;
362
363 // test for unset parameters to decide which basis to use
364 if ((mass_basis.mh != 0 || mass_basis.mH != 0 ||
365 mass_basis.mA != 0 || mass_basis.mHp != 0 ||
366 mass_basis.sin_beta_minus_alpha != 0) &&
367 gauge_basis.lambda.head<5>().cwiseAbs().maxCoeff() == 0) {
368 return gm2calc::THDM(mass_basis, sm, thdm_config);
369 } else if (mass_basis.mh == 0 && mass_basis.mH == 0 &&
370 mass_basis.mA == 0 && mass_basis.mHp == 0 &&
371 mass_basis.sin_beta_minus_alpha == 0 &&
372 gauge_basis.lambda.head<5>().cwiseAbs().maxCoeff() != 0) {
373 return gm2calc::THDM(gauge_basis, sm, thdm_config);
374 } else {
375 throw gm2calc::EInvalidInput("Cannot distinguish between mass and gauge basis.");
376 }
377 }
378};
379
380/**
381 * Prints a_mu (or the uncertainty) to stdout.
382 *
383 * @param model the model (must be initialized)
384 * @param options calculation options
385 * @param slha_io SLHA i/o object where results are stored
386 */
387template<class Model>
388struct Minimal_writer {
389 void operator()(const Model& model,
390 const gm2calc::Config_options& options,
391 gm2calc::GM2_slha_io& /* unused */)
392 {
393 const auto value = options.calculate_uncertainty
394 ? calculate_uncertainty(model, options)
395 : calculate_amu(model, options);
396
397 std::cout << std::scientific << std::setprecision(8) << value << '\n';
398 }
399};
400
401template<class Model>
402struct Detailed_writer;
403
404/**
405 * Prints detailed a_mu calculation (1-loop w/ and w/o tan(beta)
406 * resummation, 2-loop, and different contributions).
407 *
408 * @param model the model (must be initialized)
409 * @param options calculation options
410 * @param slha_io SLHA i/o object where results are stored
411 */
412template<>
413struct Detailed_writer<gm2calc::MSSMNoFV_onshell> {
414 void operator()(const gm2calc::MSSMNoFV_onshell& model,
415 const gm2calc::Config_options& /* unused */,
416 gm2calc::GM2_slha_io& /* unused */)
417 {
418 const std::string error_str = model.get_problems().have_problem()
419 ? model.get_problems().get_problems() +
420 " (with tan(beta) resummation)\n\n"
421 : "";
422
423 const double amu_1l = gm2calc::calculate_amu_1loop(model);
424 const double amu_2l_photonic_chipm = gm2calc::amu2LChipmPhotonic(model);
425 const double amu_2l_photonic_chi0 = gm2calc::amu2LChi0Photonic(model);
426 const double amu_2l_a_sfermion = gm2calc::amu2LaSferm(model);
427 const double amu_2l_a_cha = gm2calc::amu2LaCha(model);
428 const double amu_2l_ferm_sferm_approx = gm2calc::amu2LFSfapprox(model);
429 const double amu_2l = gm2calc::calculate_amu_2loop(model);
430 const double amu_2l_uncertainty =
432 const double tan_beta_cor = gm2calc::tan_beta_cor(model);
433
434 // no tan(beta) resummation
435 double amu_1l_non_tan_beta_resummed = 0.;
436 double amu_2l_non_tan_beta_resummed = 0.;
437 std::string error_str_non_tan_beta_resummation;
438
439 try {
440 // w/o tan(beta) resummation, allow throwing exceptions
441 gm2calc::MSSMNoFV_onshell model_except(model);
442 model_except.do_force_output(false);
443 amu_1l_non_tan_beta_resummed =
445 amu_2l_non_tan_beta_resummed =
447 } catch (const gm2calc::Error& error) {
448 error_str_non_tan_beta_resummation =
449 " (" + std::string(error.what()) + ")";
450 // try to redo calculation w/o throwing an exception
451 gm2calc::MSSMNoFV_onshell model_no_except(model);
452 model_no_except.do_force_output(true);
453 amu_1l_non_tan_beta_resummed =
455 amu_2l_non_tan_beta_resummed =
457 }
458
459 const double amu_2l_tanb_approx =
460 (tan_beta_cor - 1.) * amu_1l_non_tan_beta_resummed;
461
462 const double amu_best = amu_1l + amu_2l;
463
464 std::cout
465 << "====================================================================\n"
466 " amu (1-loop + 2-loop best) = "
467 << FORMAT_AMU(amu_best) << " +- "
468 << FORMAT_DEL(amu_2l_uncertainty) << '\n'
469 << "====================================================================\n"
470 "\n"
471 << error_str
472 << "==============================\n"
473 " amu (1-loop) corrections\n"
474 "==============================\n"
475 "\n"
476 "full 1L with tan(beta) resummation:\n"
477 " chi^0 " << FORMAT_AMU(gm2calc::amu1LChi0(model)) << '\n'
478 << " chi^+- " << FORMAT_AMU(gm2calc::amu1LChipm(model)) << '\n'
479 << " -------------------------------\n"
480 " sum " << FORMAT_AMU(amu_1l)
481 << " (" << FORMAT_PCT(100. * amu_1l / amu_best)
482 << "% of full 1L + 2L result)\n"
483 "\n"
484 "full 1L without tan(beta) resummation:\n"
485 " " << FORMAT_AMU(amu_1l_non_tan_beta_resummed)
486 << error_str_non_tan_beta_resummation << '\n'
487 << "\n"
488 "1L approximation with tan(beta) resummation:\n"
489 " W-H-nu " << FORMAT_AMU(gm2calc::amu1LWHnu(model) * tan_beta_cor) << '\n'
490 << " W-H-muL " << FORMAT_AMU(gm2calc::amu1LWHmuL(model) * tan_beta_cor) << '\n'
491 << " B-H-muL " << FORMAT_AMU(gm2calc::amu1LBHmuL(model) * tan_beta_cor) << '\n'
492 << " B-H-muR " << FORMAT_AMU(gm2calc::amu1LBHmuR(model) * tan_beta_cor) << '\n'
493 << " B-muL-muR " << FORMAT_AMU(gm2calc::amu1LBmuLmuR(model) * tan_beta_cor) << '\n'
494 << " -------------------------------\n"
495 " sum " << FORMAT_AMU(gm2calc::amu1Lapprox(model)) << '\n'
496 << "\n"
497 "==============================\n"
498 " amu (2-loop) corrections\n"
499 "==============================\n"
500 "\n"
501 "2L best with tan(beta) resummation:\n"
502 " " << FORMAT_AMU(amu_2l) << " (" << FORMAT_PCT(100. * amu_2l / amu_best)
503 << "% of full 1L + 2L result)\n"
504 "\n"
505 "2L best without tan(beta) resummation:\n"
506 " " << FORMAT_AMU(amu_2l_non_tan_beta_resummed)
507 << error_str_non_tan_beta_resummation << '\n'
508 << "\n"
509 "photonic with tan(beta) resummation:\n"
510 " chi^0 " << FORMAT_AMU(amu_2l_photonic_chi0) << '\n'
511 << " chi^+- " << FORMAT_AMU(amu_2l_photonic_chipm) << '\n'
512 << " -------------------------------\n"
513 " sum " << FORMAT_AMU(amu_2l_photonic_chipm + amu_2l_photonic_chi0)
514 << " (" << FORMAT_PCT(100. * (amu_2l_photonic_chipm + amu_2l_photonic_chi0) / amu_best)
515 << "% of full 1L + 2L result)\n"
516 "\n"
517 "fermion/sfermion approximation with tan(beta) resummation:\n"
518 " W-H-nu " << FORMAT_AMU(gm2calc::amu2LWHnu(model) * tan_beta_cor) << '\n'
519 << " W-H-muL " << FORMAT_AMU(gm2calc::amu2LWHmuL(model) * tan_beta_cor) << '\n'
520 << " B-H-muL " << FORMAT_AMU(gm2calc::amu2LBHmuL(model) * tan_beta_cor) << '\n'
521 << " B-H-muR " << FORMAT_AMU(gm2calc::amu2LBHmuR(model) * tan_beta_cor) << '\n'
522 << " B-muL-muR " << FORMAT_AMU(gm2calc::amu2LBmuLmuR(model) * tan_beta_cor) << '\n'
523 << " -------------------------------\n"
524 " sum " << FORMAT_AMU(amu_2l_ferm_sferm_approx)
525 << " (" << FORMAT_PCT(100. * amu_2l_ferm_sferm_approx / amu_best)
526 << "% of full 1L + 2L result)\n"
527 "\n"
528 "2L(a) (1L insertions into 1L SM diagram) with tan(beta) "
529 "resummation:\n"
530 " sfermion " << FORMAT_AMU(amu_2l_a_sfermion) << '\n'
531 << " cha^+- " << FORMAT_AMU(amu_2l_a_cha) << '\n'
532 << " -------------------------------\n"
533 " sum " << FORMAT_AMU(amu_2l_a_sfermion + amu_2l_a_cha)
534 << " (" << FORMAT_PCT(100. * (amu_2l_a_sfermion + amu_2l_a_cha) / amu_best)
535 << "% of full 1L + 2L result)\n"
536 "\n"
537 "tan(beta) correction:\n"
538 " amu(1L) * (1 / (1 + Delta_mu) - 1) = " << FORMAT_AMU(amu_2l_tanb_approx)
539 << " (" << FORMAT_PCT(100. * amu_2l_tanb_approx / amu_1l_non_tan_beta_resummed)
540 << "%)\n";
541 }
542};
543
544/**
545 * Prints detailed a_mu calculation (1-loop, 2-loop, and different
546 * contributions).
547 *
548 * @param model the model (must be initialized)
549 * @param options calculation options
550 * @param slha_io SLHA i/o object where results are stored
551 */
552template<>
553struct Detailed_writer<gm2calc::THDM> {
554 void operator()(const gm2calc::THDM& model,
555 const gm2calc::Config_options& /* unused */,
556 gm2calc::GM2_slha_io& /* unused */)
557 {
558 const double amu_1l = gm2calc::calculate_amu_1loop(model);
559 const double amu_2l = gm2calc::calculate_amu_2loop(model);
560 const double amu_2l_B = gm2calc::calculate_amu_2loop_bosonic(model);
561 const double amu_2l_F = gm2calc::calculate_amu_2loop_fermionic(model);
562 const double amu_2l_uncertainty = gm2calc::calculate_uncertainty_amu_2loop(model);
563 const double amu_best = amu_1l + amu_2l;
564
565 std::cout
566 << "====================================================================\n"
567 " amu (1-loop + 2-loop) = "
568 << FORMAT_AMU(amu_best) << " +- "
569 << FORMAT_DEL(amu_2l_uncertainty) << '\n'
570 << "====================================================================\n"
571 "\n"
572 << "==============================\n"
573 " amu (1-loop) corrections\n"
574 "==============================\n"
575 "\n"
576 "full 1L: " << FORMAT_AMU(amu_1l)
577 << " (" << FORMAT_PCT(100. * amu_1l / amu_best)
578 << "% of full 1L + 2L result)\n"
579 "\n"
580 "==============================\n"
581 " amu (2-loop) corrections\n"
582 "==============================\n"
583 "\n"
584 "bosonic 2L: " << FORMAT_AMU(amu_2l_B) << " (" << FORMAT_PCT(100. * amu_2l_B / amu_2l) << "% of 2L result)\n"
585 << "fermionic 2L: " << FORMAT_AMU(amu_2l_F) << " (" << FORMAT_PCT(100. * amu_2l_B / amu_2l) << "% of 2L result)\n"
586 << "sum : " << FORMAT_AMU(amu_2l) << " (" << FORMAT_PCT(100. * amu_2l / amu_best)
587 << "% of full 1L + 2L result)\n";
588 }
589};
590
591/**
592 * Calculates a_mu (and potentially also the uncertainty) and writes
593 * it to the SLHA i/o object.
594 *
595 * @param model the model (must be initialized)
596 * @param options calculation options
597 * @param slha_io SLHA i/o object where results are stored
598 */
599template<class Model>
600struct SLHA_writer {
601 /// SLHA entry (block name, key, value, comment)
602 using SLHA_entry = std::tuple<std::string, int, double, std::string>;
603
604 void operator()(const Model& model,
605 const gm2calc::Config_options& options,
606 gm2calc::GM2_slha_io& slha_io)
607 {
608 const SLHA_entry amu_entry = [&] {
609 const auto amu = calculate_amu(model, options);
610 const auto amu_comment = "Delta(g-2)_muon/2";
611
612 switch (options.output_format) {
614 return SLHA_entry{"LOWEN", 6, amu, amu_comment};
616 return SLHA_entry{"SPhenoLowEnergy", 21, amu, amu_comment};
617 default:
618 break;
619 }
620
621 return SLHA_entry{"GM2CalcOutput", 0, amu, amu_comment};
622 }();
623
624 set_SLHA_value(slha_io, amu_entry);
625
626 if (options.calculate_uncertainty) {
627 const auto damu = calculate_uncertainty(model, options);
628 const SLHA_entry damu_entry{"GM2CalcOutput", 1, damu,
629 "uncertainty of Delta(g-2)_muon/2"};
630 set_SLHA_value(slha_io, damu_entry);
631 }
632
633 if (model.get_problems().have_warning()) {
634 slha_io.fill_block_entry("SPINFO", 1, "GM2Calc");
635 slha_io.fill_block_entry("SPINFO", 2, GM2CALC_VERSION);
636 slha_io.fill_block_entry("SPINFO", 3, model.get_problems().get_warnings());
637 }
638
639 slha_io.write_to_stream(std::cout);
640 }
641
642private:
643 /**
644 * Sets a entry in a given SLHA block/key.
645 *
646 * @param slha_io SLHA input/output object
647 * @param entry tuple defining the SLHA (block name, key, value, comment)
648 */
649 void set_SLHA_value(gm2calc::GM2_slha_io& slha_io, const SLHA_entry& entry)
650 {
651 slha_io.fill_block_entry(std::get<0>(entry), std::get<1>(entry),
652 std::get<2>(entry), std::get<3>(entry));
653 }
654};
655
656/**
657 * Class which handles input/output for the MSSM.
658 */
659class MSSMNoFV_setup
660{
661public:
662 MSSMNoFV_setup(const gm2calc::Config_options& options_,
663 const MSSMNoFV_reader& reader_,
664 const MSSMNoFV_writer& writer_)
665 : options(options_), reader(reader_), writer(writer_)
666 {
667 }
668
669 /// read from SLHA and write to output
670 int run(gm2calc::GM2_slha_io& slha_io)
671 {
672 if (!reader) {
673 throw gm2calc::ESetupError("No reader set");
674 }
675 if (!writer) {
676 throw gm2calc::ESetupError("No writer set");
677 }
678
680 model.do_force_output(options.force_output);
681 model.set_verbose_output(options.verbose_output);
682
683 reader(model, slha_io);
684
685 if (options.verbose_output) {
686 VERBOSE(model);
687 }
688
689 if (model.get_problems().have_problem() ||
690 model.get_problems().have_warning()) {
691 std::cerr << model.get_problems() << '\n';
692 }
693
694 writer(model, options, slha_io);
695
696 return model.get_problems().have_problem() ? EXIT_FAILURE : EXIT_SUCCESS;
697 }
698
699private:
701 MSSMNoFV_reader reader{nullptr};
702 MSSMNoFV_writer writer{nullptr};
703};
704
705/**
706 * Class which handles input/output for the MSSM.
707 */
708class THDM_setup
709{
710public:
711 THDM_setup(const gm2calc::Config_options& options_,
712 const THDM_reader& reader_,
713 const THDM_writer& writer_)
714 : options(options_), reader(reader_), writer(writer_)
715 {
716 }
717
718 /// read from SLHA and write to output
719 int run(gm2calc::GM2_slha_io& slha_io)
720 {
721 if (!writer) {
722 throw gm2calc::ESetupError("No writer set");
723 }
724
725 gm2calc::THDM model = reader(slha_io, options);
726
727 if (options.verbose_output) {
728 VERBOSE(model);
729 }
730
731 writer(model, options, slha_io);
732
733 return EXIT_SUCCESS;
734 }
735
736private:
738 THDM_reader reader;
739 THDM_writer writer;
740};
741
742/**
743 * Returns properly configured (but not initialized) MSSMNoFV_setup object.
744 *
745 * @param input_type type of input (SLHA/GM2Calc)
746 * @param options configuration options
747 *
748 * @return MSSMNoFV_setup object
749 */
750MSSMNoFV_setup make_mssmnofv_setup(
751 Gm2_cmd_line_options::E_input_type input_type,
752 const gm2calc::Config_options& options)
753{
754 const auto reader = [&] () -> MSSMNoFV_reader {
755 switch (input_type) {
756 case Gm2_cmd_line_options::SLHA:
757 return SLHA_reader();
758 case Gm2_cmd_line_options::GM2Calc:
759 return GM2Calc_reader();
760 case Gm2_cmd_line_options::THDM:
761 break;
762 }
763 throw gm2calc::ESetupError("Unknown input type");
764 }();
765
766 const auto writer = [&] () -> MSSMNoFV_writer {
767 switch (options.output_format) {
769 return Minimal_writer<gm2calc::MSSMNoFV_onshell>();
771 return Detailed_writer<gm2calc::MSSMNoFV_onshell>();
772 default:
773 break;
774 }
775 return SLHA_writer<gm2calc::MSSMNoFV_onshell>();
776 }();
777
778 return MSSMNoFV_setup(options, reader, writer);
779}
780
781/**
782 * Returns properly configured (but not initialized) MSSMNoFV_setup object.
783 *
784 * @param input_type type of input (SLHA/GM2Calc)
785 * @param options configuration options
786 *
787 * @return MSSMNoFV_setup object
788 */
789THDM_setup make_thdm_setup(const gm2calc::Config_options& options)
790{
791 const auto writer = [&] () -> THDM_writer {
792 switch (options.output_format) {
794 return Minimal_writer<gm2calc::THDM>();
796 return Detailed_writer<gm2calc::THDM>();
797 default:
798 break;
799 }
800 return SLHA_writer<gm2calc::THDM>();
801 }();
802
803 return THDM_setup(options, THDM_reader(), writer);
804}
805
806} // anonymous namespace
807
808int main(int argc, const char* argv[])
809{
810 Gm2_cmd_line_options options(get_cmd_line_options(argc, argv));
811
812 if (options.input_source.empty()) {
813 ERROR(std::string("No input source given!\n") +
814 "Examples: \n" +
815 " " + argv[0] + " --slha-input-file=<file> # MSSM SLHA input\n"
816 " " + argv[0] + " --gm2calc-input-file=<file> # MSSM GM2Calc input\n"
817 " " + argv[0] + " --thdm-input-file=<file> # THDM input");
818 return EXIT_FAILURE;
819 }
820
821 gm2calc::GM2_slha_io slha_io;
822 gm2calc::Config_options config_options;
823 int exit_code = EXIT_SUCCESS;
824
825 try {
826 set_to_default(config_options, options);
827 slha_io.read_from_source(options.input_source);
828 slha_io.fill(config_options);
829
830 switch (options.input_type) {
831 case Gm2_cmd_line_options::SLHA:
832 case Gm2_cmd_line_options::GM2Calc: {
833 auto setup = make_mssmnofv_setup(options.input_type, config_options);
834 exit_code = setup.run(slha_io);
835 }
836 break;
837 case Gm2_cmd_line_options::THDM: {
838 auto setup = make_thdm_setup(config_options);
839 exit_code = setup.run(slha_io);
840 }
841 break;
842 }
843 } catch (const gm2calc::Error& error) {
844 print_error(error, slha_io, config_options);
845 exit_code = EXIT_FAILURE;
846 }
847
848 return exit_code;
849}
Spectrum generator was not setup correctly.
Definition gm2_error.hpp:37
class for reading input files and writing SLHA output files
void read_from_source(const std::string &)
reads from source
void fill_block_entry(const std::string &, unsigned, double, const std::string &)
Fills a block entry with a value.
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)
void fill(SM &) const
read SM parameters
const MSSMNoFV_onshell_problems & get_problems() const
bool have_problem() const
returns true if problem has occurred
bool have_warning() const
returns true if there is a warning
std::string get_problems() const
get problems as string
contains the MSSMNoFV parameters in the on-shell scheme
void set_verbose_output(bool flag)
enable/disable verbose output
void calculate_masses()
calculate SUSY masses in mixed on-shell/DR-bar scheme from given on-shell/DR-bar parameters
void convert_to_onshell(double precision=1e-8, unsigned max_iterations=1000)
convert given (DR-bar) parameters to mixed on-shell/DR-bar scheme
Contains routines to determine the THDM parameters.
Definition THDM.hpp:98
gm2calc::MSSMNoFV_onshell setup()
int main()
#define VERBOSE(message)
Definition gm2_log.hpp:27
#define ERROR(message)
Definition gm2_log.hpp:24
struct MSSMNoFV_onshell MSSMNoFV_onshell
#define GM2CALC_VERSION
Definition gm2_version.h:26
#define FORMAT_DEL(amu)
Definition gm2calc.cpp:42
#define FORMAT_PCT(pct)
Definition gm2calc.cpp:43
#define FORMAT_AMU(amu)
Definition gm2calc.cpp:41
double amu1LBHmuL(const MSSMNoFV_onshell &model)
Calculates the 1-loop leading log approximation: Bino–Higgsino, left-handed smuon,...
double amu2LChi0Photonic(const MSSMNoFV_onshell &model)
Calculates the photonic 2-loop contribution to the 1-loop neutralino diagram, Eq (36) arXiv:1003....
double calculate_uncertainty_amu_1loop(const THDM &, double, double)
calculates uncertainty for amu(1-loop)
double amu1LBmuLmuR(const MSSMNoFV_onshell &model)
Calculates the 1-loop leading log approximation: Bino, left-handed smuon, right-handed smuon,...
double amu1LBHmuR(const MSSMNoFV_onshell &model)
Calculates the 1-loop leading log approximation: Bino–Higgsino, right-handed smuon,...
double amu2LWHnu(const MSSMNoFV_onshell &model)
Calculates 1st line of Eq (6.5) arxiv:1311.1775.
double amu1LWHmuL(const MSSMNoFV_onshell &model)
Calculates the 1-loop leading log approximation: Wino–Higgsino, left-handed smuon,...
double amu2LaSferm(const MSSMNoFV_onshell &model)
Calculates 2-loop contribution to amu, where a sfermion loop has been inserted into a 1-loop Standard...
double calculate_amu_2loop_bosonic(const THDM &model)
Calculates 2-loop bosonic contribution to a_mu in the THDM.
Definition gm2_2loop.cpp:31
double amu2LWHmuL(const MSSMNoFV_onshell &model)
Calculates 2nd line of Eq (6.5) arxiv:1311.1775.
double calculate_amu_2loop(const MSSMNoFV_onshell &model)
Calculates best 2-loop SUSY contribution to a_mu with tan(beta) resummation.
double amu1Lapprox(const MSSMNoFV_onshell &model)
Calculates the full 1-loop leading log approximation, Eq (6.1) arXiv:1311.1775 but include tan(beta) ...
double amu2LFSfapprox(const MSSMNoFV_onshell &model)
Calculates 2-loop leading log approximation for fermion-sfermion loop contributions,...
double amu2LaCha(const MSSMNoFV_onshell &model)
Calculates 2-loop contribution to amu, where a chargino loop has been inserted into a 1-loop Standard...
double calculate_uncertainty_amu_2loop(const THDM &, double, double)
calculates uncertainty for amu(2-loop)
double calculate_amu_2loop_fermionic(const THDM &model)
Calculates fermionic 2-loop contribution to a_mu in the THDM.
Definition gm2_2loop.cpp:57
double calculate_amu_1loop(const MSSMNoFV_onshell &model)
Calculates full 1-loop SUSY contribution to (g-2), Eq (45) of arXiv:hep-ph/0609168.
Definition gm2_1loop.cpp:74
double amu1LChipm(const MSSMNoFV_onshell &model)
Calculates 1-loop chargino contribution to (g-2), Eq (2.11b) of arXiv:1311.1775.
double amu1LWHnu(const MSSMNoFV_onshell &model)
Calculates the 1-loop leading log approximation: Wino–Higgsino, muon-sneutrino, Eq (6....
double amu2LBHmuL(const MSSMNoFV_onshell &model)
Calculates 3rd line of Eq (6.5) arxiv:1311.1775.
double amu2LBHmuR(const MSSMNoFV_onshell &model)
Calculates 4th line of Eq (6.5) arxiv:1311.1775.
double amu1LChi0(const MSSMNoFV_onshell &model)
Calculates 1-loop neutralino contribution to (g-2), Eq (2.11a) of arXiv:1311.1775.
Definition gm2_1loop.cpp:83
double tan_beta_cor(const MSSMNoFV_onshell &model)
Calculates .
double calculate_amu_2loop_non_tan_beta_resummed(const MSSMNoFV_onshell &model)
Calculates best 2-loop SUSY contribution to a_mu without tan(beta) resummation.
Definition gm2_2loop.cpp:95
double calculate_uncertainty_amu_0loop(const THDM &, double, double)
calculates uncertainty for amu(0-loop)
double amu2LChipmPhotonic(const MSSMNoFV_onshell &model)
Calculates the photonic 2-loop contribution to the 1-loop chargino diagram, Eq (35) arXiv:1003....
double calculate_amu_1loop_non_tan_beta_resummed(const MSSMNoFV_onshell &model)
Calculates full 1-loop SUSY contribution to (g-2), Eq (45) of arXiv:hep-ph/0609168.
Definition gm2_1loop.cpp:57
double amu2LBmuLmuR(const MSSMNoFV_onshell &model)
Calculates 5th line of Eq (6.5) arxiv:1311.1775.
configuration for the calculation of
E_output_format output_format
output format
bool running_couplings
use running couplings
bool calculate_uncertainty
calculate uncertainty
unsigned loop_order
loop order
bool verbose_output
print additional information
bool tanb_resummation
tan(beta) resummation
bool force_output
print output even if error occured
Configuration options for the THDM.
Definition THDM.hpp:37
bool running_couplings
use running couplings
Definition THDM.hpp:39
bool force_output
force output
Definition THDM.hpp:38
Eigen::Matrix< double, 7, 1 > lambda
Definition THDM.hpp:56