diff options
author | Thomas White <taw@physics.org> | 2020-10-15 15:22:30 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-10-15 15:22:59 +0200 |
commit | 8a8130d9bf8908477e64cabf4affca5d1c7b93c7 (patch) | |
tree | 264bf03c62ba2d37606d26d1edac3edb7880eea2 /libcrystfel | |
parent | a7e8cb0dfa7ca8746409a4ff692307300c7b6593 (diff) |
Shuffle default order of indexing methods
Diffstat (limited to 'libcrystfel')
-rw-r--r-- | libcrystfel/src/index.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcrystfel/src/index.c b/libcrystfel/src/index.c index fcacac99..f9c02c28 100644 --- a/libcrystfel/src/index.c +++ b/libcrystfel/src/index.c @@ -1208,12 +1208,12 @@ char *detect_indexing_methods(UnitCell *cell) if ( methods == NULL ) return NULL; methods[0] = '\0'; + do_probe(taketwo_probe, cell, methods); + do_probe(xgandalf_probe, cell, methods); do_probe(mosflm_probe, cell, methods); - do_probe(dirax_probe, cell, methods); do_probe(asdf_probe, cell, methods); + do_probe(dirax_probe, cell, methods); do_probe(xds_probe, cell, methods); - do_probe(xgandalf_probe, cell, methods); - do_probe(taketwo_probe, cell, methods); //do_probe(felix_probe, cell, methods); //do_probe(pinkIndexer_probe, cell, methods); |