Skip to content

Commit

Permalink
provide non-const get_eft() method
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Voigt authored and Alexander Voigt committed Feb 6, 2017
1 parent d7406a5 commit a446515
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Expand Up @@ -59,6 +59,7 @@ public:
virtual ~@ModelName@_spectrum_generator() {}

const standard_model::StandardModel<T>& get_eft() const { return eft; }
standard_model::StandardModel<T>& get_eft() { return eft; }
double get_high_scale() const { return high_scale; }
double get_susy_scale() const { return susy_scale; }
double get_low_scale() const { return low_scale; }
Expand Down
Expand Up @@ -57,6 +57,7 @@ public:
virtual ~@ModelName@_spectrum_generator() {}

const standard_model::StandardModel<T>& get_eft() const { return eft; }
standard_model::StandardModel<T>& get_eft() { return eft; }
double get_high_scale() const { return 0.; }
double get_susy_scale() const { return susy_scale; }
double get_low_scale() const { return low_scale; }
Expand Down

0 comments on commit a446515

Please sign in to comment.