Skip to content
Snippets Groups Projects
Commit 0df4d869 authored by David Hendriks's avatar David Hendriks
Browse files

updated the grid by splitting the ms functinality and making it available for other functions

parent 1cd1bcf4
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
......@@ -46,6 +46,8 @@ grid_options_defaults_dict = {
"_zero_prob_stars_skipped": 0,
"ensemble_factor_in_probability_weighted_mass": False, # Whether to multiply the ensemble results by 1/probability_weighted_mass
"multiplicity_fraction_function": 0, # Which multiplicity fraction function to use. 0: None, 1: Arenou 2010, 2: Rhagavan 2010, 3: M&S 2017
"_m&s_options": None, # Holds the M&S options.
"_loaded_ms_data": False, # Holds flag whether the M&S data is loaded into memory
##########################
# Execution log:
##########################
......@@ -489,6 +491,8 @@ grid_options_descriptions = {
"_zero_prob_stars_skipped": "Internal counter to track how many systems are skipped because they have 0 probability",
"ensemble_factor_in_probability_weighted_mass": "Flag to multiply all the ensemble results with 1/probability_weighted_mass",
"multiplicity_fraction_function": "Which multiplicity fraction function to use. 0: None, 1: Arenou 2010, 2: Rhagavan 2010, 3: M&S 2017",
"_m&s_options": "Internal variable that holds the M&S options. Don't write to this your self",
"_loaded_ms_data": "Internal variable storing whether the M&S data has been loaded into memory",
}
###
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment