From fd2bf5d76c6f6fce7bc3f4d82c7c0c8dda896feb Mon Sep 17 00:00:00 2001 From: Thomas White Date: Thu, 24 Sep 2020 11:54:19 +0200 Subject: Use cell_print in index_once --- src/gui_index.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/gui_index.c b/src/gui_index.c index 4ea2e3ac..fc214327 100644 --- a/src/gui_index.c +++ b/src/gui_index.c @@ -566,12 +566,7 @@ static void run_indexing_once(struct crystfelproject *proj) STATUS("Number of crystals: %i\n", proj->cur_image->n_crystals); for ( i=0; icur_image->n_crystals; i++ ) { - double a, b, c, al, be, ga; - cell_get_parameters(crystal_get_cell(proj->cur_image->crystals[i]), - &a, &b, &c, &al, &be, &ga); - STATUS(" %2i: %.2f %.2f %.2f A, %.2f %.2f %.2f deg\n", - i, a*1e10, b*1e10, c*1e10, - rad2deg(al), rad2deg(be), rad2deg(ga)); + cell_print(crystal_get_cell(proj->cur_image->crystals[i])); } } -- cgit v1.2.3