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)
48using MSSMNoFV_reader = std::function<void(
52using MSSMNoFV_writer = std::function<void(
65struct Gm2_cmd_line_options {
66 enum E_input_type { SLHA, GM2Calc, THDM };
68 std::string input_source;
69 E_input_type input_type{SLHA};
71 static bool starts_with(
const std::string& str,
const std::string& prefix) {
72 return str.compare(0, prefix.size(), prefix) == 0;
76void print_usage(
const char* program_name)
79 "Usage: " << program_name <<
" [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"
98bool process_input_type(
const std::string& str, Gm2_cmd_line_options& options)
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 }
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;
128Gm2_cmd_line_options get_cmd_line_options(
int argc,
const char* argv[])
130 Gm2_cmd_line_options options;
132 for (
int i = 1; i < argc; ++i) {
133 const std::string option_string(argv[i]);
135 if (process_input_type(option_string, options)) {
139 if (option_string ==
"--help" || option_string ==
"-h") {
140 print_usage(argv[0]);
144 if (option_string ==
"--version" || option_string ==
"-v") {
149 ERROR(
"Unrecognized command line option: " << option_string);
171 const Gm2_cmd_line_options& options)
173 switch (options.input_type) {
174 case Gm2_cmd_line_options::SLHA:
177 case Gm2_cmd_line_options::GM2Calc:
180 case Gm2_cmd_line_options::THDM:
284double calculate_uncertainty(
const Model& model,
287 double result = std::numeric_limits<double>::signaling_NaN();
300 ERROR(
"loop order > 2 not supported!");
331struct GM2Calc_reader {
356 slha_io.
fill(mass_basis);
357 slha_io.
fill(gauge_basis);
364 if ((mass_basis.
mh != 0 || mass_basis.
mH != 0 ||
365 mass_basis.
mA != 0 || mass_basis.
mHp != 0 ||
367 gauge_basis.
lambda.head<5>().cwiseAbs().maxCoeff() == 0) {
369 }
else if (mass_basis.
mh == 0 && mass_basis.
mH == 0 &&
370 mass_basis.
mA == 0 && mass_basis.
mHp == 0 &&
372 gauge_basis.
lambda.head<5>().cwiseAbs().maxCoeff() != 0) {
388struct Minimal_writer {
389 void operator()(
const Model& model,
394 ? calculate_uncertainty(model, options)
395 : calculate_amu(model, options);
397 std::cout << std::scientific << std::setprecision(8) << value <<
'\n';
402struct Detailed_writer;
420 " (with tan(beta) resummation)\n\n"
430 const double amu_2l_uncertainty =
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;
443 amu_1l_non_tan_beta_resummed =
445 amu_2l_non_tan_beta_resummed =
448 error_str_non_tan_beta_resummation =
449 " (" + std::string(error.what()) +
")";
453 amu_1l_non_tan_beta_resummed =
455 amu_2l_non_tan_beta_resummed =
459 const double amu_2l_tanb_approx =
460 (tan_beta_cor - 1.) * amu_1l_non_tan_beta_resummed;
462 const double amu_best = amu_1l + amu_2l;
465 <<
"====================================================================\n"
466 " amu (1-loop + 2-loop best) = "
469 <<
"====================================================================\n"
472 <<
"==============================\n"
473 " amu (1-loop) corrections\n"
474 "==============================\n"
476 "full 1L with tan(beta) resummation:\n"
479 <<
" -------------------------------\n"
481 <<
" (" <<
FORMAT_PCT(100. * amu_1l / amu_best)
482 <<
"% of full 1L + 2L result)\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'
488 "1L approximation with tan(beta) resummation:\n"
494 <<
" -------------------------------\n"
497 "==============================\n"
498 " amu (2-loop) corrections\n"
499 "==============================\n"
501 "2L best with tan(beta) resummation:\n"
503 <<
"% of full 1L + 2L result)\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'
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"
517 "fermion/sfermion approximation with tan(beta) resummation:\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"
528 "2L(a) (1L insertions into 1L SM diagram) with tan(beta) "
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"
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)
553struct Detailed_writer<
gm2calc::THDM> {
563 const double amu_best = amu_1l + amu_2l;
566 <<
"====================================================================\n"
567 " amu (1-loop + 2-loop) = "
570 <<
"====================================================================\n"
572 <<
"==============================\n"
573 " amu (1-loop) corrections\n"
574 "==============================\n"
577 <<
" (" <<
FORMAT_PCT(100. * amu_1l / amu_best)
578 <<
"% of full 1L + 2L result)\n"
580 "==============================\n"
581 " amu (2-loop) corrections\n"
582 "==============================\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"
587 <<
"% of full 1L + 2L result)\n";
602 using SLHA_entry = std::tuple<std::string, int, double, std::string>;
604 void operator()(
const Model& model,
608 const SLHA_entry amu_entry = [&] {
609 const auto amu = calculate_amu(model, options);
610 const auto amu_comment =
"Delta(g-2)_muon/2";
614 return SLHA_entry{
"LOWEN", 6, amu, amu_comment};
616 return SLHA_entry{
"SPhenoLowEnergy", 21, amu, amu_comment};
621 return SLHA_entry{
"GM2CalcOutput", 0, amu, amu_comment};
624 set_SLHA_value(slha_io, amu_entry);
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);
633 if (model.get_problems().have_warning()) {
652 std::get<2>(entry), std::get<3>(entry));
663 const MSSMNoFV_reader& reader_,
664 const MSSMNoFV_writer& writer_)
665 : options(options_), reader(reader_), writer(writer_)
683 reader(model, slha_io);
694 writer(model, options, slha_io);
701 MSSMNoFV_reader reader{
nullptr};
702 MSSMNoFV_writer writer{
nullptr};
712 const THDM_reader& reader_,
713 const THDM_writer& writer_)
714 : options(options_), reader(reader_), writer(writer_)
731 writer(model, options, slha_io);
750MSSMNoFV_setup make_mssmnofv_setup(
751 Gm2_cmd_line_options::E_input_type input_type,
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:
766 const auto writer = [&] () -> MSSMNoFV_writer {
769 return Minimal_writer<gm2calc::MSSMNoFV_onshell>();
771 return Detailed_writer<gm2calc::MSSMNoFV_onshell>();
775 return SLHA_writer<gm2calc::MSSMNoFV_onshell>();
778 return MSSMNoFV_setup(options, reader, writer);
791 const auto writer = [&] () -> THDM_writer {
794 return Minimal_writer<gm2calc::THDM>();
796 return Detailed_writer<gm2calc::THDM>();
800 return SLHA_writer<gm2calc::THDM>();
803 return THDM_setup(options, THDM_reader(), writer);
808int main(
int argc,
const char* argv[])
810 Gm2_cmd_line_options options(get_cmd_line_options(argc, argv));
812 if (options.input_source.empty()) {
813 ERROR(std::string(
"No input source given!\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");
823 int exit_code = EXIT_SUCCESS;
826 set_to_default(config_options, options);
828 slha_io.
fill(config_options);
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);
837 case Gm2_cmd_line_options::THDM: {
838 auto setup = make_thdm_setup(config_options);
839 exit_code =
setup.run(slha_io);
844 print_error(error, slha_io, config_options);
845 exit_code = EXIT_FAILURE;
Spectrum generator was not setup correctly.
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
void do_force_output(bool)
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.
gm2calc::MSSMNoFV_onshell setup()
struct MSSMNoFV_onshell MSSMNoFV_onshell
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.
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.
double calculate_amu_1loop(const MSSMNoFV_onshell &model)
Calculates full 1-loop SUSY contribution to (g-2), Eq (45) of arXiv:hep-ph/0609168.
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.
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.
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.
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.
bool running_couplings
use running couplings
bool force_output
force output
Eigen::Matrix< double, 7, 1 > lambda
double sin_beta_minus_alpha