aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2020-10-15 15:21:38 +0200
committerThomas White <taw@physics.org>2020-10-15 15:21:38 +0200
commita7e8cb0dfa7ca8746409a4ff692307300c7b6593 (patch)
treea3304279ba502c26315162c76160ea2ab16ea0f3
parent186a05e946f13d56ba23c58e67946b0531aa9095 (diff)
Add TakeTwo to the list of indexers automatically used
-rw-r--r--libcrystfel/src/index.c4
-rw-r--r--src/crystfelindexingopts.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/libcrystfel/src/index.c b/libcrystfel/src/index.c
index 5a7c1ae9..fcacac99 100644
--- a/libcrystfel/src/index.c
+++ b/libcrystfel/src/index.c
@@ -1213,8 +1213,8 @@ char *detect_indexing_methods(UnitCell *cell)
do_probe(asdf_probe, cell, methods);
do_probe(xds_probe, cell, methods);
do_probe(xgandalf_probe, cell, methods);
- /* Don't automatically use TakeTwo, Felix or PinkIndexer (yet) */
- //do_probe(taketwo_probe, cell, methods);
+ do_probe(taketwo_probe, cell, methods);
+
//do_probe(felix_probe, cell, methods);
//do_probe(pinkIndexer_probe, cell, methods);
diff --git a/src/crystfelindexingopts.c b/src/crystfelindexingopts.c
index f88e4be2..2d51e062 100644
--- a/src/crystfelindexingopts.c
+++ b/src/crystfelindexingopts.c
@@ -181,7 +181,7 @@ static GtkWidget *make_indexing_methods(CrystFELIndexingOpts *io)
add_method(io->indm_store, "xds", "XDS", TRUE, TRUE, TRUE);
add_method(io->indm_store, "xgandalf", "XGANDALF", TRUE, TRUE, FALSE);
add_method(io->indm_store, "pinkIndexer", "PinkIndexer", FALSE, TRUE, FALSE);
- add_method(io->indm_store, "taketwo", "TakeTwo", FALSE, TRUE, FALSE);
+ add_method(io->indm_store, "taketwo", "TakeTwo", TRUE, TRUE, FALSE);
add_method(io->indm_store, "asdf", "ASDF", TRUE, TRUE, FALSE);
add_method(io->indm_store, "felix", "Felix", FALSE, TRUE, FALSE);