aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/render_hkl.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/render_hkl.c b/src/render_hkl.c
index 7e9317f5..46ba4c89 100644
--- a/src/render_hkl.c
+++ b/src/render_hkl.c
@@ -357,8 +357,14 @@ int main(int argc, char *argv[])
wght = WGHT_SQRTI;
} else if ( strcmp(weighting, "count") == 0 ) {
wght = WGHT_COUNTS;
+ } else if ( strcmp(weighting, "counts") == 0 ) {
+ wght = WGHT_COUNTS;
} else if ( strcmp(weighting, "rawcts") == 0 ) {
wght = WGHT_RAWCOUNTS;
+ } else if ( strcmp(weighting, "rawcount") == 0 ) {
+ wght = WGHT_RAWCOUNTS;
+ } else if ( strcmp(weighting, "rawcounts") == 0 ) {
+ wght = WGHT_RAWCOUNTS;
} else {
ERROR("Unrecognised weighting '%s'\n", weighting);
return 1;