From 7a7cf0355140357aafc48cbcf79b3b0dc1e574cd Mon Sep 17 00:00:00 2001 From: Thomas White Date: Wed, 6 Jul 2011 15:53:31 +0200 Subject: Fix the choice of "guiding" reflections for PR --- src/hrs-scaling.c | 183 +++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 125 insertions(+), 58 deletions(-) (limited to 'src/hrs-scaling.c') diff --git a/src/hrs-scaling.c b/src/hrs-scaling.c index 2e2f8d99..ff73ee77 100644 --- a/src/hrs-scaling.c +++ b/src/hrs-scaling.c @@ -35,7 +35,7 @@ #define MAX_CYCLES (50) -char *find_common_reflections(struct image *images, int n) +static char *find_common_reflections(struct image *images, int n) { int i; char *cref; @@ -54,6 +54,8 @@ char *find_common_reflections(struct image *images, int n) signed int h, k, l; int j; + if ( !get_scalable(refl) ) continue; + get_indices(refl, &h, &k, &l); for ( j=0; jh, it->k, it->l, sym, &uh, &vh); + get_indices(refl, &h, &k, &l); - set_intensity(uh_arr, it->h, it->k, it->l, uh); - set_intensity(vh_arr, it->h, it->k, it->l, vh); + s_uhvh(images, n, h, k, l, &uh, &vh); + set_intensity(uh_arr, h, k, l, uh); + set_intensity(vh_arr, h, k, l, vh); } uha_arr = malloc(n*sizeof(double)); vha_arr = malloc(n*sizeof(double)); - for ( refidx=0; refidxh; - const signed int k = it->k; - const signed int l = it->l; + signed int h, k, l; + + get_indices(refl, &h, &k, &l); /* For this reflection, calculate all the possible * values of uha and vha */ @@ -290,7 +292,15 @@ static double iterate_scale(struct image *images, int n, if ( isnan(Ih) ) Ih = 0.0; } else { /* Look up by asymmetric indices */ - Ih = lookup_intensity(reference, h, k, l); + Reflection *r = find_refl(reference, h, k, l); + if ( r == NULL ) { + ERROR("%3i %3i %3i isn't in the " + "reference list, so why is it " + "marked as scalable?\n", h, k, l); + Ih = 0.0; + } else { + Ih = get_intensity(r); + } } rha = vha - image_a->osf * uha * Ih; @@ -310,7 +320,9 @@ static double iterate_scale(struct image *images, int n, if ( (reference != NULL) && (a!=b) ) continue; /* Zero if no common reflections */ - if ( cref[a+n*b] != 0 ) continue; + if ( (reference == NULL) && cref[a+n*b] != 0 ) { + continue; + } uhb = uha_arr[b]; vhb = vha_arr[b]; @@ -335,7 +347,6 @@ static double iterate_scale(struct image *images, int n, gsl_vector_set(v, a, vval+vc); } - } free(uh_arr); @@ -379,27 +390,28 @@ static double iterate_scale(struct image *images, int n, } -static RefList *lsq_intensities(struct image *images, int n, - ReflItemList *obs, const char *sym) +static void lsq_intensities(struct image *images, int n, RefList *full) { - RefList *full; - int i; - - full = reflist_new(); - for ( i=0; ih, it->k, it->l); - refl != NULL; - refl = next_found_refl(refl) ) + for ( f = find_refl(images[m].reflections, h, k, l); + f != NULL; f = next_found_refl(refl) ) { double p; - if ( !get_scalable(refl) ) continue; - p = get_partiality(refl); + if ( !get_scalable(f) ) continue; + p = get_partiality(f); - num += get_intensity(refl) * p * G; + num += get_intensity(f) * p * G; den += pow(p, 2.0) * pow(G, 2.0); redundancy++; @@ -426,19 +436,17 @@ static RefList *lsq_intensities(struct image *images, int n, } - if ( !isnan(num/den) ) { - new = add_refl(full, it->h, it->k, it->l); - set_int(new, num/den); - set_redundancy(new, redundancy); - } else { - ERROR("Couldn't calculate LSQ full intensity for" - "%3i %3i %3i\n", it->h, it->k, it->l); - /* Doom is probably impending */ + set_int(refl, num/den); + + //STATUS("%3i %3i %3i %i %i\n", h, k, l, + // redundancy, get_redundancy(refl)); + + if ( get_redundancy(refl) != redundancy ) { + ERROR("Didn't find all the expected parts for" + " %3i %3i %3i\n", h, k, l); } } - - return full; } @@ -459,23 +467,78 @@ static void normalise_osfs(struct image *images, int n) } +static RefList *guess_scaled_reflections(struct image *images, int n) +{ + RefList *scalable; + int i; + + scalable = reflist_new(); + for ( i=0; i 0.01) && (i < MAX_CYCLES) ); - full = lsq_intensities(images, n, obs, sym); + free(cref); + + show_scale_factors(images, n); + + lsq_intensities(images, n, full); return full; } -- cgit v1.2.3