Skip to content

Commit

Permalink
allow tower spectrum generator to return the EFT
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Voigt authored and Alexander Voigt committed Mar 21, 2016
1 parent 0c49ea9 commit 414bc54
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions templates/SM_high_scale_spectrum_generator.hpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ public:
{}
virtual ~@ModelName@_SM_spectrum_generator() {}

const SM<T>& get_eft() const { 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 @@ -220,6 +221,7 @@ void @ModelName@_SM_spectrum_generator<T>::run(const softsusy::QedQcd& oneset,
// run to output scale (if scale > 0)
if (!is_zero(this->parameter_output_scale)) {
model.run_to(this->parameter_output_scale);
eft.run_to(this->parameter_output_scale);
}
} catch (const NoConvergenceError&) {
model.get_problems().flag_no_convergence();
Expand Down
2 changes: 2 additions & 0 deletions templates/SM_low_scale_spectrum_generator.hpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ public:
{}
virtual ~@ModelName@_SM_spectrum_generator() {}

const SM<T>& get_eft() const { 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 Expand Up @@ -211,6 +212,7 @@ void @ModelName@_SM_spectrum_generator<T>::run(const softsusy::QedQcd& oneset,
// run to output scale (if scale > 0)
if (!is_zero(this->parameter_output_scale)) {
model.run_to(this->parameter_output_scale);
eft.run_to(this->parameter_output_scale);
}
} catch (const NoConvergenceError&) {
model.get_problems().flag_no_convergence();
Expand Down

0 comments on commit 414bc54

Please sign in to comment.