From 9111f4e7cda1a8f137027c9a4906e919209da505 Mon Sep 17 00:00:00 2001 From: Claudia Lagos Date: Fri, 10 Jan 2025 09:31:38 +0800 Subject: [PATCH] Making apply_fix* parameters false by default This is to make sure it's easier for the user to recover the published models. --- include/dark_matter_halos.h | 2 +- include/execution.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/dark_matter_halos.h b/include/dark_matter_halos.h index 9cbc29af..4a68c3a3 100644 --- a/include/dark_matter_halos.h +++ b/include/dark_matter_halos.h @@ -70,7 +70,7 @@ class DarkMatterHaloParameters { bool random_lambda = false; bool spin_mass_dependence = false; bool use_converged_lambda_catalog = false; - bool apply_fix_to_mass_swapping_events = true; + bool apply_fix_to_mass_swapping_events = false; int min_part_convergence = 100; }; diff --git a/include/execution.h b/include/execution.h index b166f805..9f195c47 100644 --- a/include/execution.h +++ b/include/execution.h @@ -88,7 +88,7 @@ class ExecutionParameters { // massive transients parameters // flag to apply fixes for them - bool apply_fix_to_massive_transient_events = true; + bool apply_fix_to_massive_transient_events = false; // Mass_DSH/Mass_SH minimum decrease value float transient_lostmass_ratio = 0.7; // Mass_TDSH/Mass_SH minimum increase value