aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/post-refinement.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/post-refinement.c b/src/post-refinement.c
index ac142ac3..33611d84 100644
--- a/src/post-refinement.c
+++ b/src/post-refinement.c
@@ -368,6 +368,16 @@ static void do_pr_refine(Crystal *cr, const RefList *full,
return;
}
+ /* Apply the final shifts */
+ UnitCell *cnew;
+ cnew = rotate_cell_xy(crystal_get_cell(cr), gsl_vector_get(min->x, 0),
+ gsl_vector_get(min->x, 1));
+ cell_free(crystal_get_cell(cr));
+ crystal_set_cell(cr, cnew);
+
+ update_predictions(cr);
+ calculate_partialities(cr, PMODEL_XSPHERE);
+
if ( verbose ) {
STATUS("PR final: dev = %10.5e, free dev = %10.5e\n",
residual(cr, full, 0, NULL, NULL),