diff options
author | Helen Ginn <helen@strubi.ox.ac.uk> | 2018-04-29 18:57:26 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2018-05-02 09:46:15 +0200 |
commit | 72dd667956dc3eecf88e73454c47a633d6b38c72 (patch) | |
tree | 3c3bfd53433cbb69fd55c9bcf40236ff60aa2267 | |
parent | d459477af06611f1b4920290f9084219aa7f3e47 (diff) |
Fussiness.
-rw-r--r-- | libcrystfel/src/taketwo.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libcrystfel/src/taketwo.c b/libcrystfel/src/taketwo.c index a081df52..fe913901 100644 --- a/libcrystfel/src/taketwo.c +++ b/libcrystfel/src/taketwo.c @@ -1484,7 +1484,8 @@ static int find_seeds(struct TakeTwoCell *cell, struct taketwo_private *tp) * for optimisation by generating a look-up table * by spot instead of by vector. */ - int shared = obs_vecs_share_spot(&obs_vecs[i], &obs_vecs[j]); + int shared = obs_vecs_share_spot(&obs_vecs[i], + &obs_vecs[j]); if ( !shared ) continue; /* cell vector index matches stored in i, j and total @@ -1533,7 +1534,8 @@ static int find_seeds(struct TakeTwoCell *cell, struct taketwo_private *tp) } } - qsort(cell->seeds, cell->seed_count, sizeof(struct Seed), sort_seed_by_score); + qsort(cell->seeds, cell->seed_count, sizeof(struct Seed), + sort_seed_by_score); return 1; |