From 15ff2bcdbc294277359e64d2d07d2715a422d1fc Mon Sep 17 00:00:00 2001 From: Thomas White Date: Fri, 8 Feb 2013 16:38:12 -0800 Subject: Allow --indexing=none --- libcrystfel/src/index.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libcrystfel/src/index.c b/libcrystfel/src/index.c index 94159957..1c3441a6 100644 --- a/libcrystfel/src/index.c +++ b/libcrystfel/src/index.c @@ -258,6 +258,10 @@ IndexingMethod *build_indexer_list(const char *str) /* ReAx doesn't need any cell check */ list[++nmeth] = set_raw(defaults(INDEXING_REAX)); + } else if ( strcmp(methods[i], "none") == 0) { + list[++nmeth] = INDEXING_NONE; + return list; + } else if ( strcmp(methods[i], "raw") == 0) { list[nmeth] = set_raw(list[nmeth]); -- cgit v1.2.3