From 998c273be056b84e378bdec95fc36998d663ba14 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Fri, 13 May 2016 14:30:08 +0200 Subject: {check,compare}_hkl: Add warnings when using potentially silly option choices --- src/check_hkl.c | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'src/check_hkl.c') diff --git a/src/check_hkl.c b/src/check_hkl.c index 0449c7a9..def986c9 100644 --- a/src/check_hkl.c +++ b/src/check_hkl.c @@ -3,11 +3,11 @@ * * Characterise 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 + * 2010-2016 Thomas White * * This file is part of CrystFEL. * @@ -780,6 +780,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 5 : @@ -827,6 +830,13 @@ int main(int argc, char *argv[]) return 1; } + if ( !ltest && (ignorenegs || zeronegs) ) { + ERROR("WARNING: You are using --zero-negs or --ignore-negs " + "even though it's not required.\n"); + ERROR("The figures of merit will not reflect the entire data " + "set!\n"); + } + if ( sym_str == NULL ) { sym_str = strdup("1"); } -- cgit v1.2.3