diff options
author | Thomas White <taw@physics.org> | 2015-06-19 11:50:28 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2015-06-19 12:38:12 +0200 |
commit | 89368cc3992e721c65d3783a76f854cab2643b9b (patch) | |
tree | cfdf8cb06f59e4b659d3f679b36fba32dd3ec4dc /libcrystfel/src/index.h | |
parent | 89411b3b07a795e49b1c80e56f5cf6304f33ac57 (diff) |
Remove ReAx and GrainSpotter
Neither of these ever really worked, and better algorithms exist now.
Diffstat (limited to 'libcrystfel/src/index.h')
-rw-r--r-- | libcrystfel/src/index.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/libcrystfel/src/index.h b/libcrystfel/src/index.h index ff1cd5df..12c13df8 100644 --- a/libcrystfel/src/index.h +++ b/libcrystfel/src/index.h @@ -48,15 +48,6 @@ | INDEXING_CHECK_CELL_COMBINATIONS \ | INDEXING_USE_LATTICE_TYPE) -#define INDEXING_DEFAULTS_REAX (INDEXING_REAX | INDEXING_USE_LATTICE_TYPE \ - | INDEXING_USE_CELL_PARAMETERS \ - | INDEXING_CHECK_PEAKS) - -#define INDEXING_DEFAULTS_GRAINSPOTTER (INDEXING_GRAINSPOTTER \ - | INDEXING_USE_LATTICE_TYPE \ - | INDEXING_USE_CELL_PARAMETERS \ - | INDEXING_CHECK_PEAKS) - /* Axis check is needed for XDS, because it likes to permute the axes */ #define INDEXING_DEFAULTS_XDS (INDEXING_XDS | INDEXING_USE_LATTICE_TYPE \ | INDEXING_USE_CELL_PARAMETERS \ @@ -68,8 +59,6 @@ * @INDEXING_NONE: No indexing to be performed * @INDEXING_DIRAX: Invoke DirAx * @INDEXING_MOSFLM: Invoke MOSFLM - * @INDEXING_REAX: DPS algorithm using known cell parameters - * @INDEXING_GRAINSPOTTER: Invoke GrainSpotter * @INDEXING_XDS: Invoke XDS * @INDEXING_SIMULATION: Dummy value * @INDEXING_DEBUG: Results injector for debugging @@ -95,8 +84,6 @@ typedef enum { /* The core indexing methods themselves */ INDEXING_DIRAX = 1, INDEXING_MOSFLM = 2, - INDEXING_REAX = 3, - INDEXING_GRAINSPOTTER = 4, INDEXING_XDS = 5, INDEXING_SIMULATION = 6, INDEXING_DEBUG = 7, |