aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2009-12-04 17:17:54 +0100
committerThomas White <taw@physics.org>2009-12-04 17:17:54 +0100
commit6853c7bfc145118cd228dbdba7845048a427476a (patch)
treedd10060d117973d5d01bfa5f90c10740db3162b8
parent9467afae90d7a7538edb8c1134cd695b22d6de5e (diff)
Don't need this mugwatch any more
-rw-r--r--src/process_hkl.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/process_hkl.c b/src/process_hkl.c
index 4fb64aaa..15ba62f3 100644
--- a/src/process_hkl.c
+++ b/src/process_hkl.c
@@ -137,7 +137,6 @@ static void process_reflections(double *ref, double *trueref,
int ctot = 0;
int nmeas = 0;
double R, scale;
- double calc_222, obs_222;
for ( j=0; j<LIST_SIZE; j++ ) {
ctot += counts[j];
@@ -145,13 +144,10 @@ static void process_reflections(double *ref, double *trueref,
}
mean_counts = (double)ctot/nmeas;
- calc_222 = lookup_intensity(ref, 2, 2, 2) / lookup_count(counts, 2, 2, 2);
- obs_222 = lookup_intensity(trueref, 2, 2, 2);
-
R = stat_r2(ref, trueref, counts, LIST_SIZE, &scale);
STATUS("%8u: R=%5.2f%% (sf=%7.4e) mean meas/refl=%5.2f,"
- " %i reflections measured, %f\n",
- n_patterns, R*100.0, scale, mean_counts, nmeas, calc_222/obs_222);
+ " %i reflections measured\n",
+ n_patterns, R*100.0, scale, mean_counts, nmeas);
if ( do_rvsq ) {
/* Record graph of R against q for this N */