diff options
author | Thomas White <taw@bitwiz.org.uk> | 2011-02-12 15:25:09 -0800 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:14 +0100 |
commit | 24b38f3df87bcc24832c32c8649cde3d22b5e119 (patch) | |
tree | 7b654342fb47be575d417de88fcdded43c2bad5a /src/hrs-scaling.c | |
parent | 4d4d8e549411cfc9361e3746ba60db130db46f07 (diff) |
Tidy up, and set intensities correctly
Diffstat (limited to 'src/hrs-scaling.c')
-rw-r--r-- | src/hrs-scaling.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/hrs-scaling.c b/src/hrs-scaling.c index 9f1ada75..d5d96ffc 100644 --- a/src/hrs-scaling.c +++ b/src/hrs-scaling.c @@ -52,7 +52,6 @@ static void s_uhavha(signed int hat, signed int kat, signed int lat, if ( !get_scalable(refl) ) continue; ic = get_intensity(refl) / get_partiality(refl); - STATUS("%f / %f = %f\n", get_intensity(refl), get_partiality(refl), ic); sigi = sqrt(fabs(ic)); uha_val += 1.0 / pow(sigi, 2.0); @@ -118,7 +117,6 @@ static double iterate_scale(struct image *images, int n, uh_arr = new_list_intensity(); vh_arr = new_list_intensity(); - STATUS("%i\n", n_ref); for ( h=0; h<n_ref; h++ ) { double uh, vh; @@ -126,7 +124,6 @@ static double iterate_scale(struct image *images, int n, uh = s_uh(images, n, it->h, it->k, it->l, sym); vh = s_vh(images, n, it->h, it->k, it->l, sym); - STATUS("%f %f\n", uh, vh); set_intensity(uh_arr, it->h, it->k, it->l, uh); set_intensity(vh_arr, it->h, it->k, it->l, vh); |