diff options
author | Thomas White <taw@physics.org> | 2013-02-19 18:13:13 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2013-02-19 18:13:13 +0100 |
commit | 59b99486be3865a53049d0c6317157d9f22bc0e1 (patch) | |
tree | 277c5e32714e547e8fb3d242ed5f3d28f6708e92 /libcrystfel/src/index.h | |
parent | a5439f150d97b30576ea9f337c004ff0a9e404a1 (diff) |
Add -cell and -nocell to indexing methods
Diffstat (limited to 'libcrystfel/src/index.h')
-rw-r--r-- | libcrystfel/src/index.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libcrystfel/src/index.h b/libcrystfel/src/index.h index 94b0d457..f60bb18f 100644 --- a/libcrystfel/src/index.h +++ b/libcrystfel/src/index.h @@ -52,13 +52,16 @@ | 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) #define INDEXING_DEFAULTS_XDS (INDEXING_XDS | INDEXING_USE_LATTICE_TYPE \ + | INDEXING_USE_CELL_PARAMETERS \ | INDEXING_CHECK_PEAKS) /** @@ -87,6 +90,7 @@ typedef enum { INDEXING_CHECK_CELL_AXES = 512, INDEXING_CHECK_PEAKS = 1024, INDEXING_USE_LATTICE_TYPE = 2048, + INDEXING_USE_CELL_PARAMETERS = 4096, } IndexingMethod; |