35#include <boost/format.hpp>
36#include <boost/lexical_cast.hpp>
39#define FORMAT_ELEMENT(pdg,value,name) \
40 boost::format(" %5d %16.8E # %s\n") % (pdg) % (value) % (name)
39#define FORMAT_ELEMENT(pdg,value,name) \ …
41#define FORMAT_SPINFO(n,str) \
42 boost::format(" %5d %s\n") % (n) % (str)
41#define FORMAT_SPINFO(n,str) \ …
55 struct GM2CalcInput_data {
60 struct CKM_wolfenstein {
136 for (
const auto& line : block) {
138 if (line.is_block_def() && line.size() > 3 && line[2] ==
"Q=") {
158 while (block != data.
cend()) {
175bool GM2_slha_io::is_at_scale(
const SLHAea::Block& block,
double scale,
double eps)
177 if (
is_zero(scale, std::numeric_limits<double>::epsilon())) {
195 for (
const auto& line : block) {
196 if (line.is_data_line() && line.size() >= 2) {
218 while (block != data.
cend()) {
219 if (is_at_scale(*block, scale)) {
239 ERROR(
"cannot write SLHA file");
253 unsigned entry,
double value,
258 if (block == data.
cend()) {
281 if (block == data.
cend()) {
301 const double scale =
model.get_scale();
304 Eigen::Matrix<double,3,3> Ae(Eigen::Matrix<double,3,3>::Zero());
309 Eigen::Matrix<double,3,3> Au(Eigen::Matrix<double,3,3>::Zero());
314 Eigen::Matrix<double,3,3> Ad(Eigen::Matrix<double,3,3>::Zero());
340 const double eps = std::numeric_limits<double>::epsilon();
344 throw EInvalidInput(
"Could not determine renormalization scale"
348 model.set_scale(scale);
360void GM2_slha_io::fill_from_mass(MSSMNoFV_onshell_physical& physical)
const
370 physical.convert_to_hk();
375 GM2CalcInput_data data;
383 if (data.alpha_MZ > std::numeric_limits<double>::epsilon()) {
384 model.set_alpha_MZ(data.alpha_MZ);
387 if (data.alpha_thompson > std::numeric_limits<double>::epsilon()) {
388 model.set_alpha_thompson(data.alpha_thompson);
414 fill_from_sminputs(
model);
415 fill_from_gm2calcinput(
model);
427 fill_from_sminputs(
model);
428 fill_from_mass(
model.get_physical());
430 fill_from_hmix(
model);
432 fill_from_msoft(
model);
433 fill_alpha_from_gm2calcinput(
model);
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()};
488 read_block(
"GM2CalcTHDMDeltauInput", Delta_u);
489 read_block(
"GM2CalcTHDMDeltadInput", Delta_d);
490 read_block(
"GM2CalcTHDMDeltalInput", Delta_l);
495 basis.Delta_u = Delta_u;
496 basis.Delta_d = Delta_d;
497 basis.Delta_l = Delta_l;
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()};
526 read_block(
"GM2CalcTHDMDeltauInput", Delta_u);
527 read_block(
"GM2CalcTHDMDeltadInput", Delta_d);
528 read_block(
"GM2CalcTHDMDeltalInput", Delta_l);
533 basis.Delta_u = Delta_u;
534 basis.Delta_d = Delta_d;
535 basis.Delta_l = Delta_l;
560 return std::modf(value, &
intpart) == 0.0;
563template <
class Source>
566 return boost::lexical_cast<std::string>(
arg);
571 if (value == 0.0 || value == 1.0) {
574 throw EInvalidInput(std::string(
error_msg) +
": " +
575 gm2calc::to_string(value) +
576 " (allowed values: 0 or 1)");
584 result =
static_cast<T>(
static_cast<int>(value));
587 std::string(
error_msg) +
": " + gm2calc::to_string(value) +
588 " (allowed integer values: " + gm2calc::to_string(
min) +
",...," +
589 gm2calc::to_string(
max) +
")");
596 return static_cast<int>(value);
598 throw EInvalidInput(gm2calc::to_string(value) +
" is not an integer");
604 const double eps = std::numeric_limits<double>::epsilon();
621 "unsupported output format in GM2CalcConfig[0]");
625 "unsupported loop order in GM2CalcConfig[1]");
629 "unsupported tan(beta) resummation flag value in GM2CalcConfig[2]");
633 "unsupported force output flag value in GM2CalcConfig[3]");
637 "unsupported verbose output flag value in GM2CalcConfig[4]");
641 "unsupported uncertainty flag value in GM2CalcConfig[5]");
645 "unsupported running couplings flag value in GM2CalcConfig[6]");
648 WARNING(
"Unrecognized entry in block GM2CalcConfig: " <<
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;
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;
692 WARNING(
"Unrecognized entry in block GM2CalcInput: " <<
key);
698 GM2CalcInput_data& data,
int key,
double value)
702 case 1: data.alpha_MZ = value;
break;
703 case 2: data.alpha_thompson = value;
break;
713 case 33: sm.
set_mh(value);
break;
722 const double Pi = 3.14159265358979323846;
723 MSSMNoFV_onshell_physical& physical =
model.get_physical();
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;
744 WARNING(
"Unrecognized entry in block SMINPUTS: " <<
key);
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;
771 WARNING(
"Unrecognized entry in block SMINPUTS: " <<
key);
777 HMIX_data& data,
int key,
double value)
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;
785 WARNING(
"Unrecognized entry in block HMIX: " <<
key);
794 case 21:
model.set_mHd2(value) ;
break;
795 case 22:
model.set_mHu2(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;
815 WARNING(
"Unrecognized entry in block MSOFT: " <<
key);
821 MSSMNoFV_onshell_physical& physical,
int key,
double value)
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;
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;
866 case 24: sm.
set_mw(value);
break;
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;
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;
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;
928 CKM_wolfenstein& ckm,
int key,
double value)
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;
Container of Lines that resembles a block in a SLHA structure.
Block & str(const std::string &block)
Assigns content from a string to the Block.
iterator end()
Returns a read/write iterator that points one past the last element in the Coll.
void clear()
Erases all the elements in the Coll.
void push_front(const value_type &block)
Adds a Block to the begin of the Coll.
iterator find(const key_type &blockName)
Tries to locate a Block in the Coll.
Coll & read(std::istream &is)
Assigns content from an input stream to the Coll.
void push_back(const value_type &block)
Adds a Block to the end of the Coll.
const_iterator cend() const
Returns a read-only (constant) iterator that points one past the last element in the Coll.
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
void set_mz(double m) noexcept
void set_alpha_s_mz(double a) noexcept
void set_mv(const Eigen::Matrix< double, 3, 1 > &m) noexcept
void set_md(const Eigen::Matrix< double, 3, 1 > &m) noexcept
void set_ml(const Eigen::Matrix< double, 3, 1 > &m) noexcept
void set_mw(double m) noexcept
void set_mh(double m) noexcept
void set_mu(const Eigen::Matrix< double, 3, 1 > &m) noexcept
void set_ckm_from_wolfenstein(double lambdaW, double aCkm, double rhobar, double etabar)
#define FORMAT_ELEMENT(pdg, value, name)
#define FORMAT_SPINFO(n, str)
struct MSSMNoFV_onshell MSSMNoFV_onshell
std::string to_string(const Source &arg)
Converts an object of type Source to a string.
Yukawa_type int_to_cpp_yukawa_type(int yukawa_type)
convert int to thdm::Yukawa_type
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
@ NUMBER_OF_OUTPUT_FORMATS