diff options
author | Thomas White <taw@physics.org> | 2013-05-30 10:48:44 -0700 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2013-05-30 10:48:44 -0700 |
commit | aab623d73967e7570f92da5b84bac598e2273d6d (patch) | |
tree | 98d4aa2665236111cbacfa1387c9c252cd69d494 /src/indexamajig.c | |
parent | 494de86c5b3e15d0f006c6c1feb40643d74dbc24 (diff) |
indexamajig: Get rid of --use-saturated, because it's now the default
Diffstat (limited to 'src/indexamajig.c')
-rw-r--r-- | src/indexamajig.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/indexamajig.c b/src/indexamajig.c index dc244866..67e9a7c4 100644 --- a/src/indexamajig.c +++ b/src/indexamajig.c @@ -139,9 +139,7 @@ static void show_help(const char *s) " --no-check-prefix Don't attempt to correct the --prefix.\n" " --closer-peak Don't integrate from the location of a nearby peak\n" " instead of the predicted spot. Don't use.\n" -" --use-saturated During the initial peak search, don't reject\n" -" peaks which contain pixels above max_adu.\n" -" --integrate-saturated During the final integration stage, don't reject\n" +" --no-use-saturated During the initial peak search, reject\n" " peaks which contain pixels above max_adu.\n" " --no-revalidate Don't re-integrate and check HDF5 peaks for\n" " validity.\n" @@ -239,6 +237,7 @@ int main(int argc, char *argv[]) {"no-refls-in-stream", 0, &iargs.stream_refls, 0}, {"integrate-saturated",0, &iargs.integrate_saturated,1}, {"use-saturated", 0, &iargs.use_saturated, 1}, + {"no-use-saturated", 0, &iargs.use_saturated, 0}, {"no-revalidate", 0, &iargs.no_revalidate, 1}, /* Long-only options with arguments */ |