aboutsummaryrefslogtreecommitdiff
path: root/src/facetron.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-11-22 11:39:07 +0100
committerThomas White <taw@physics.org>2012-02-22 15:27:06 +0100
commit95588bbf411aa46473ad098125a65012f2df68fc (patch)
tree2a7c74ce5f29a5c52ecd5c242d5c4d1cf7a4ede4 /src/facetron.c
parent20d05388833bd9f3b6819d82f983eea424663407 (diff)
Don't change which reflections are used for refinement until the next macrocycle
Diffstat (limited to 'src/facetron.c')
-rw-r--r--src/facetron.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/facetron.c b/src/facetron.c
index 2bac7511..663a3236 100644
--- a/src/facetron.c
+++ b/src/facetron.c
@@ -101,7 +101,7 @@ static void refine_image(int mytask, void *tasks)
return;
}
- spots = find_intersections(image, image->indexed_cell, &n, 0);
+ spots = find_intersections(image, image->indexed_cell, &n, 0, NULL);
dev = +INFINITY;
i = 0;
do {
@@ -162,7 +162,7 @@ static void integrate_image(int mytask, void *tasks)
}
/* Figure out which spots should appear in this pattern */
- spots = find_intersections(image, image->indexed_cell, &n, 0);
+ spots = find_intersections(image, image->indexed_cell, &n, 0, NULL);
/* For each reflection, estimate the partiality */
for ( j=0; j<n; j++ ) {