From f3919703df2b8f87e66e72639f420266b6639a7a Mon Sep 17 00:00:00 2001 From: David Frantz Date: Thu, 18 Jan 2024 15:17:11 +0100 Subject: [PATCH] default outlier/inlier to off --- src/aux-level/param-aux.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/aux-level/param-aux.c b/src/aux-level/param-aux.c index 7b33b98f..aeaca606 100755 --- a/src/aux-level/param-aux.c +++ b/src/aux-level/param-aux.c @@ -955,10 +955,11 @@ void write_par_hl_noise(FILE *fp, bool verbose){ fprintf(fp, "# can be restored if its residual is lower than a multiple of the noise\n"); fprintf(fp, "# (BELOW_NOISE). Higher/Lower values will restore observations more aggres-\n"); fprintf(fp, "# sively/conservative. Give 0 to both parameters to disable the filtering.\n"); + fprintf(fp, "# ABOVE_NOISE = 3, BELOW_NOISE = 1 are parameters that have worked in some settings.\n"); fprintf(fp, "# Type: Float. Valid range: [0,...\n"); } - fprintf(fp, "ABOVE_NOISE = 3\n"); - fprintf(fp, "BELOW_NOISE = 1\n"); + fprintf(fp, "ABOVE_NOISE = 0\n"); + fprintf(fp, "BELOW_NOISE = 0\n"); return; }