aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/asdf.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2016-01-08 17:58:57 +0100
committerThomas White <taw@physics.org>2016-01-08 18:07:44 +0100
commit3df3322433fd3e4532d90ec2d1771a1be5babd4b (patch)
tree7e9553c375a40926ebb35b8203a23c9000e68c95 /libcrystfel/src/asdf.c
parent4ede1c30e188a4734707561350b7c9f074063a92 (diff)
Make indexing "retry" and "multi" optional
Diffstat (limited to 'libcrystfel/src/asdf.c')
-rw-r--r--libcrystfel/src/asdf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libcrystfel/src/asdf.c b/libcrystfel/src/asdf.c
index e5d3466f..87f00716 100644
--- a/libcrystfel/src/asdf.c
+++ b/libcrystfel/src/asdf.c
@@ -1178,7 +1178,8 @@ IndexingPrivate *asdf_prepare(IndexingMethod *indm, UnitCell *cell,
/* Flags that asdf knows about */
*indm &= INDEXING_METHOD_MASK | INDEXING_CHECK_CELL_COMBINATIONS
- | INDEXING_CHECK_CELL_AXES | INDEXING_CHECK_PEAKS;
+ | INDEXING_CHECK_CELL_AXES | INDEXING_CHECK_PEAKS
+ | INDEXING_RETRY | INDEXING_MULTI;
dp = malloc(sizeof(struct asdf_private));
if ( dp == NULL ) return NULL;