diff options
author | Thomas White <taw@physics.org> | 2019-08-29 14:03:43 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2019-08-29 14:03:43 +0200 |
commit | 7836e89222bf587639adc1ad06dfd6d216d25379 (patch) | |
tree | 3de88262b743d6d5fbd4a4f719ff970ddc95ae7a /libcrystfel/src/index.h | |
parent | 1b3b9301d3229536333a84e6e4aa1cfad1b45d74 (diff) |
indexamajig: Remove --no-cell-combinations
Also remove all the related API stuff. We now have a much better way of
checking indexing results.
Diffstat (limited to 'libcrystfel/src/index.h')
-rw-r--r-- | libcrystfel/src/index.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libcrystfel/src/index.h b/libcrystfel/src/index.h index 15b21e25..ec7ed61b 100644 --- a/libcrystfel/src/index.h +++ b/libcrystfel/src/index.h @@ -115,15 +115,15 @@ typedef enum { /** Refine the indexing solution */ INDEXING_REFINE = 4, - /** Check the unit cell, including derivative lattices */ - INDEXING_CHECK_CELL_COMBINATIONS = 8, - - /** Check the unit cell, only permuting axes if necessary */ - INDEXING_CHECK_CELL_AXES = 16, + /* 8, 16 reserved (formerly INDEXING_CHECK_CELL_COMBINATIONS and + * INDEXING_CHECK_CELL_AXES respectively) */ /** Check that the peaks agree with the indexing solution */ INDEXING_CHECK_PEAKS = 32, + /** Check that the unit cell agrees with the target cell */ + INDEXING_CHECK_CELL = 32, + } IndexingFlags; #ifdef __cplusplus |