diff options
-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); |