aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2010-07-18 14:57:38 -0400
committerThomas White <taw@physics.org>2012-02-22 15:26:54 +0100
commitad346773c98622b765b1d95da602ca4189ccba23 (patch)
tree9f2c8fb2a840a8af5d7cef4e790959be9ff9082c
parent641656491961c5bbd1be91a39fae28579815c69a (diff)
process_hkl: Don't set counts to 1
-rw-r--r--src/process_hkl.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/process_hkl.c b/src/process_hkl.c
index f1c1877c..6d17349e 100644
--- a/src/process_hkl.c
+++ b/src/process_hkl.c
@@ -329,7 +329,6 @@ static void merge_all(FILE *fh, double **pmodel, ReflItemList **pobserved,
for ( i=0; i<IDIM*IDIM*IDIM; i++ ) {
if ( counts[i] > 0 ) {
model[i] /= (double)counts[i];
- counts[i] = 1;
}
}
}