diff options
author | Thomas White <taw@physics.org> | 2015-02-09 17:13:40 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2015-02-09 17:13:40 +0100 |
commit | faa45cdf126772d75dae76f73533b129ea3ff4bc (patch) | |
tree | 2756b1c1b81000e99993310c2ee6c66bdc0563b0 /src/whirligig.c | |
parent | 9bc8da473b500284f14f4dc8b3107cc6f6b8ad7c (diff) |
whirligig: Update docs and options
Diffstat (limited to 'src/whirligig.c')
-rw-r--r-- | src/whirligig.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/whirligig.c b/src/whirligig.c index 550404ef..b774f397 100644 --- a/src/whirligig.c +++ b/src/whirligig.c @@ -669,7 +669,9 @@ static void show_help(const char *s) "\n" " -h, --help Display this help message.\n" " --version Print CrystFEL version number and exit.\n" -" --no-polarisation Disable polarisation correction.\n"); +"\n" +" --window-size=n History size for finding connected crystals.\n" +" --output-dir=folder Put output files in <folder>.\n"); } @@ -697,7 +699,6 @@ int main(int argc, char *argv[]) int n_images = 0; /* Defaults */ - int polarisation = 1; int default_window_size = 16; char *outdir = "."; int verbose = 0; @@ -712,11 +713,6 @@ int main(int argc, char *argv[]) {"window-size", 1, NULL, 4 }, {"output-dir", 1, NULL, 5 }, - {"no-polarisation", 0, &polarisation, 0}, - {"no-polarization", 0, &polarisation, 0}, - {"polarisation", 0, &polarisation, 1}, /* compat */ - {"polarization", 0, &polarisation, 1}, /* compat */ - {0, 0, NULL, 0} }; |