diff options
author | Thomas White <taw@bitwiz.org.uk> | 2011-07-09 09:01:22 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:32 +0100 |
commit | c58fe463d52152d20bf74a91e639c86cf11b2e3d (patch) | |
tree | 1a3404c6a32765a748698c669e352f7081e3e78c | |
parent | f2473f3f3c29b6d4b1193393c77ca4d21921be4e (diff) |
Mark unrefinable reflections as such
-rw-r--r-- | src/partialator.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/partialator.c b/src/partialator.c index 97c10a7b..954d1746 100644 --- a/src/partialator.c +++ b/src/partialator.c @@ -216,6 +216,7 @@ static void select_reflections_for_refinement(struct image *images, int n, if ( !sc ) { n_noscale++; + set_refinable(refl, 0); } else { @@ -233,6 +234,7 @@ static void select_reflections_for_refinement(struct image *images, int n, } else { n_nomatch++; + set_refinable(refl, 0); } } |