Skip to content

Commit

Permalink
adding spectrum generator option to force positive majorana masses
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Voigt authored and Alexander Voigt committed Feb 11, 2016
1 parent 7cb890c commit aeac515
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/spectrum_generator_settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ void Spectrum_generator_settings::set(Settings o, double value)
* | top_2loop_corrections_qcd | 0, 1 | 1 (= enabled) |
* | beta_zero_threshold | any positive double | 1.0e-11 |
* | calculate_observables | 0 (no) or 1 (yes) | 0 (= no) |
* | force_positive_masses | 0 (no) or 1 (yes) | 0 (= no) |
*/
void Spectrum_generator_settings::reset()
{
Expand All @@ -85,6 +86,7 @@ void Spectrum_generator_settings::reset()
values[top_2loop_corrections_qcd] = 1.;
values[beta_zero_threshold] = 1.0e-11;
values[calculate_observables] = 0;
values[force_positive_masses] = 0;
}

Two_loop_corrections Spectrum_generator_settings::get_two_loop_corrections() const
Expand Down
1 change: 1 addition & 0 deletions src/spectrum_generator_settings.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ class Spectrum_generator_settings {
top_2loop_corrections_qcd, ///< [13] Top-quark 2-loop QCD corrections
beta_zero_threshold, ///< [14] beta function zero threshold
calculate_observables, ///< [15] calculate observables (a_muon, ...)
force_positive_masses, ///< [16] force positive masses of majoran fermions
NUMBER_OF_OPTIONS ///< number of possible options
};

Expand Down

0 comments on commit aeac515

Please sign in to comment.