From 8a8130d9bf8908477e64cabf4affca5d1c7b93c7 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Thu, 15 Oct 2020 15:22:30 +0200 Subject: Shuffle default order of indexing methods --- libcrystfel/src/index.c | 6 +++--- 1 file 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); -- cgit v1.2.3