Skip to content

Commit

Permalink
adding getter for the SM in FlexibleEFTHiggs SG
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Voigt authored and Alexander Voigt committed Nov 23, 2017
1 parent 46d07db commit 348aecb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions templates/standard_model_spectrum_generator_interface.hpp.in
Expand Up @@ -58,6 +58,11 @@ public:
@ModelName@_slha<@ModelName@<T>> get_model_slha() const
{ return @ModelName@_slha<@ModelName@<T>>(model, settings.get(Spectrum_generator_settings::force_positive_masses) == 0.); }

const standard_model::StandardModel<T>& get_sm() const
{ return eft; }
standard_model::StandardModel<T>& get_sm()
{ return eft; }

Spectrum_generator_problems get_problems() const { return problems; }
int get_exit_code() const { return problems.have_problem(); }
double get_reached_precision() const { return reached_precision; }
Expand Down

0 comments on commit 348aecb

Please sign in to comment.