aboutsummaryrefslogtreecommitdiff
path: root/src/process_hkl.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2014-12-01 15:14:14 +0100
committerThomas White <taw@physics.org>2014-12-01 16:20:18 +0100
commit04371f05e3c7a4ce219682f6da2ffa3f1940e61f (patch)
tree6cff4cc450acb73670a80345a785085c421b2b83 /src/process_hkl.c
parent2f4033255192812bd3c01bd8568a083dcd72ec65 (diff)
Fussiness
Diffstat (limited to 'src/process_hkl.c')
-rw-r--r--src/process_hkl.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/process_hkl.c b/src/process_hkl.c
index 8e82b1a1..fbbf4ff0 100644
--- a/src/process_hkl.c
+++ b/src/process_hkl.c
@@ -427,12 +427,15 @@ static int merge_all(Stream *st, RefList *model, RefList *reference,
n_crystals_seen++;
if ( (n_crystals_seen > start_after)
- && (crystal_get_resolution_limit(cr) >= min_res) ) {
+ && (crystal_get_resolution_limit(cr) >= min_res) )
+ {
n_crystals++;
- r = merge_crystal(model, &image, cr, reference, sym,
- hist_vals, hist_h, hist_k, hist_l,
- hist_i, config_nopolar, min_snr,
- max_adu, push_res, min_cc, do_scale, stat);
+ r = merge_crystal(model, &image, cr, reference,
+ sym, hist_vals,
+ hist_h, hist_k, hist_l,
+ hist_i, config_nopolar,
+ min_snr, max_adu, push_res,
+ min_cc, do_scale, stat);
if ( r == 0 ) n_crystals_used++;
}