Skip to content

Commit

Permalink
calculate full EFT spectrum at the 1L level
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Voigt authored and Alexander Voigt committed Jul 26, 2016
1 parent 6fb588a commit 0c2a9c0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 21 deletions.
17 changes: 4 additions & 13 deletions templates/standard_model_high_scale_spectrum_generator.hpp.in
Expand Up @@ -196,21 +196,12 @@ void @ModelName@_standard_model_spectrum_generator<T>::run(const softsusy::QedQc

eft.run_to(Q_higgs);

// 1L computation of pole mass spectrum in the SM
eft.calculate_DRbar_masses();
eft.solve_ewsb();
// eft.calculate_spectrum();
// does not work properly, find out why!

eft.calculate_MVWp_pole();
eft.calculate_MVZ_pole();
eft.calculate_MFu_pole();
eft.calculate_MFd_pole();
eft.calculate_MFe_pole();

// since Higgs mass matching is locked to 1-loop, so is this calculation
eft.set_pole_mass_loop_order(1);
eft.solve_ewsb_one_loop();
eft.calculate_Mhh_pole();
eft.set_ewsb_loop_order(1);
eft.solve_ewsb();
eft.calculate_spectrum();

this->model.get_physical().M@HiggsBoson_0@ = eft.get_physical().Mhh;
this->model.get_physical().M@VectorZ_0@ = eft.get_physical().MVZ;
Expand Down
12 changes: 4 additions & 8 deletions templates/standard_model_low_scale_spectrum_generator.hpp.in
Expand Up @@ -186,16 +186,12 @@ void @ModelName@_standard_model_spectrum_generator<T>::run(const softsusy::QedQc

eft.run_to(Q_higgs);

// 1L computation of pole mass spectrum in the SM
eft.calculate_DRbar_masses();
eft.set_pole_mass_loop_order(1);
eft.set_ewsb_loop_order(1);
eft.solve_ewsb();
// eft.calculate_spectrum();
// does not work properly, find out why!

eft.calculate_MVWp_pole();
eft.calculate_MVZ_pole();
eft.calculate_MFu_pole();
eft.calculate_MFd_pole();
eft.calculate_MFe_pole();
eft.calculate_spectrum();

// since Higgs mass matching is locked to 1-loop, so is this calculation
eft.set_pole_mass_loop_order(1);
Expand Down

0 comments on commit 0c2a9c0

Please sign in to comment.