diff options
author | Thomas White <taw@physics.org> | 2011-07-04 13:21:36 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:31 +0100 |
commit | b67429762f02d906fdc3ab14da4577c958937679 (patch) | |
tree | 5480a78070ce1e319ea15674ff61255dbc77e7d9 /src/post-refinement.c | |
parent | b7928ad9b90c45ff227bb6124c3a365283f11db4 (diff) |
Don't select scalable reflections during post refinement
Diffstat (limited to 'src/post-refinement.c')
-rw-r--r-- | src/post-refinement.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/post-refinement.c b/src/post-refinement.c index 46e320e6..7eef5dfa 100644 --- a/src/post-refinement.c +++ b/src/post-refinement.c @@ -486,7 +486,7 @@ void pr_refine(struct image *image, const RefList *full, const char *sym) const int verbose = 1; int nexp, nfound, nnotfound; - update_partialities(image, sym, NULL, &nexp, &nfound, &nnotfound); + update_partialities(image, sym, &nexp, &nfound, &nnotfound); if ( verbose ) { dev = mean_partial_dev(image, full, sym); @@ -516,8 +516,7 @@ void pr_refine(struct image *image, const RefList *full, const char *sym) max_shift = pr_iterate(image, full, sym); - update_partialities(image, sym, NULL, - &nexp, &nfound, &nnotfound); + update_partialities(image, sym, &nexp, &nfound, &nnotfound); if ( verbose ) { dev = mean_partial_dev(image, full, sym); @@ -536,7 +535,7 @@ void pr_refine(struct image *image, const RefList *full, const char *sym) cell_set_reciprocal(image->indexed_cell, asx, asy, asz, bsx, bsy, bsz, csx, csy, csz); - update_partialities(image, sym, NULL, + update_partialities(image, sym, &nexp, &nfound, &nnotfound); image->pr_dud = 1; |