diff options
author | Thomas White <taw@physics.org> | 2010-07-06 18:47:32 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:26:53 +0100 |
commit | e2ebf4b642d74b0181736e358e7ee3f963b9ee76 (patch) | |
tree | 6cc2e66c08381508c7f01c5186c3e134e2cc9069 | |
parent | b214f6a7ffc3485d46a5375b0868f699b2897e63 (diff) |
calibrate_detector: Fix --help
-rw-r--r-- | src/calibrate_detector.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/calibrate_detector.c b/src/calibrate_detector.c index b291ecc2..0a8790f4 100644 --- a/src/calibrate_detector.c +++ b/src/calibrate_detector.c @@ -84,6 +84,8 @@ static void show_help(const char *s) " -s, --sum=<method> Use this method for summation. Choose from:\n" " peaks : sum 10px radius circles around peaks.\n" " threshold : sum thresholded images.\n" +" -t, --threshold=<n> Set the threshold if summing using the 'threshold'\n" +" method.\n" "\n" " --filter-cm Perform common-mode noise subtraction on images\n" " before proceeding.\n" @@ -91,7 +93,7 @@ static void show_help(const char *s) " pixels in each 3x3 region to zero if any of them\n" " have negative values.\n" "\n" -" -j <n> Run <n> analyses in parallel. Default 1.\n" +" -j <n> Run <n> analyses in parallel. Default 1.\n" " -x, --prefix=<p> Prefix filenames from input file with 'p'.\n"); } |