diff options
author | Thomas White <taw@physics.org> | 2015-03-17 14:34:42 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2015-04-20 15:50:39 +0200 |
commit | 83e259f5ab54c848e80c33060a48dea379d38f6f (patch) | |
tree | 9a5971ab25cd8e6835bb25715c2b41ab94090f2e /src/partialator.c | |
parent | 3a1864f93caff3629f64cf4ae8e8fe778c216910 (diff) |
Make panel assignments invariant during prediction- and post-refinement
Reflections appearing and disappearing are problematic when trying to do a
least-squares refinement. Therefore, assume that reflections stay on
panel and keep them under consideration even if their partialities go to
zero (i.e. they drift off Bragg). This should stabilise both
refinements, and simplifies quite a lot of code.
Collateral "damage": the old "select_intersection()" is now gone.
Diffstat (limited to 'src/partialator.c')
-rw-r--r-- | src/partialator.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/partialator.c b/src/partialator.c index 4b1d5b18..ca3a9976 100644 --- a/src/partialator.c +++ b/src/partialator.c @@ -626,17 +626,12 @@ int main(int argc, char *argv[]) for ( j=0; j<images[i].n_crystals; j++ ) { Crystal *cryst; - int n_gained = 0; - int n_lost = 0; - double mean_p_change = 0.0; cryst = images[i].crystals[j]; crystal_set_image(cryst, &images[i]); /* Now it's safe to do the following */ - update_partialities_2(cryst, pmodel, &n_gained, &n_lost, - &mean_p_change); - assert(n_gained == 0); /* That'd just be silly */ + update_partialities(cryst, pmodel); } } |