aboutsummaryrefslogtreecommitdiff
path: root/src/compare_hkl.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2016-05-13 14:30:08 +0200
committerThomas White <taw@physics.org>2016-05-13 14:30:08 +0200
commit998c273be056b84e378bdec95fc36998d663ba14 (patch)
tree70240cd5fd7834fc0ad98ef3814e11a95b399c35 /src/compare_hkl.c
parent56a0a242fad06ecb8714e3c6eaa8817fb2680663 (diff)
{check,compare}_hkl: Add warnings when using potentially silly option choices
Diffstat (limited to 'src/compare_hkl.c')
-rw-r--r--src/compare_hkl.c15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/compare_hkl.c b/src/compare_hkl.c
index 3dd4662e..51e51dc9 100644
--- a/src/compare_hkl.c
+++ b/src/compare_hkl.c
@@ -3,11 +3,11 @@
*
* Compare reflection lists
*
- * Copyright © 2012-2015 Deutsches Elektronen-Synchrotron DESY,
+ * Copyright © 2012-2016 Deutsches Elektronen-Synchrotron DESY,
* a research centre of the Helmholtz Association.
*
* Authors:
- * 2010-2015 Thomas White <taw@physics.org>
+ * 2010-2016 Thomas White <taw@physics.org>
* 2013 Lorenzo Galli <lorenzo.galli@desy.de>
*
* This file is part of CrystFEL.
@@ -1226,6 +1226,9 @@ int main(int argc, char *argv[])
ERROR("Invalid value for --sigma-cutoff\n");
return 1;
}
+ STATUS("WARNING: You are using --sigma-cutoff. "
+ "Be aware that the figures of merit will not "
+ "reflect the entire data set!\n");
break;
case 6 :
@@ -1300,6 +1303,14 @@ int main(int argc, char *argv[])
}
}
+ if ( (fom != FOM_R1F) && (config_ignorenegs || config_zeronegs) ) {
+ ERROR("WARNING: You are using --zero-negs or --ignore-negs "
+ "even though your chosen figure of merit does not "
+ "require it.\n");
+ ERROR("The figures of merit will not reflect the entire data "
+ "set!\n");
+ }
+
if ( sym_str == NULL ) {
sym_str = strdup("1");
}