diff options
-rw-r--r-- | src/process_hkl.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/process_hkl.c b/src/process_hkl.c index 3e2a4900..90428426 100644 --- a/src/process_hkl.c +++ b/src/process_hkl.c @@ -136,14 +136,15 @@ static void merge_pattern(RefList *model, RefList *new, int max_only, double model_int; get_indices(refl, &h, &k, &l); + + /* Put into the asymmetric unit for the target group */ + get_asymm(h, k, l, &h, &k, &l, sym); + model_version = find_refl(model, h, k, l); if ( model_version == NULL ) { model_version = add_refl(model, h, k, l); } - /* Put into the asymmetric unit for the target group */ - get_asymm(h, k, l, &h, &k, &l, sym); - /* Read the intensity from the original location * (i.e. before screwing around with symmetry) */ intensity = get_intensity(refl); |