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/compare_hkl.c | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'src/compare_hkl.c') 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 + * 2010-2016 Thomas White * 2013 Lorenzo Galli * * 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"); } -- cgit v1.2.3