diff options
Diffstat (limited to 'src/partial_sim.c')
-rw-r--r-- | src/partial_sim.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/partial_sim.c b/src/partial_sim.c index b8914feb..c0d9aaaa 100644 --- a/src/partial_sim.c +++ b/src/partial_sim.c @@ -3,11 +3,11 @@ * * Generate partials for testing scaling * - * Copyright © 2012-2014 Deutsches Elektronen-Synchrotron DESY, + * Copyright © 2012-2015 Deutsches Elektronen-Synchrotron DESY, * a research centre of the Helmholtz Association. * * Authors: - * 2011-2014 Thomas White <taw@physics.org> + * 2011-2015 Thomas White <taw@physics.org> * 2014 Valerio Mariani * * This file is part of CrystFEL. @@ -728,6 +728,12 @@ int main(int argc, char *argv[]) if ( check_list_symmetry(full, sym) ) { ERROR("The input reflection list does not appear to" " have symmetry %s\n", symmetry_name(sym)); + if ( cell_get_lattice_type(cell) == L_MONOCLINIC ) { + ERROR("You may need to specify the unique axis " + "in your point group. The default is " + "unique axis c.\n"); + ERROR("See 'man crystfel' for more details.\n"); + } return 1; } |