aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2016-10-18 17:46:23 +0200
committerThomas White <taw@physics.org>2016-10-18 17:46:23 +0200
commit92aaa33d870c10fc832247e2aa02de535072f992 (patch)
tree11bd282e29ea23446f8fe229b96f870378f2c8fd
parentcaa6bf476a07a08fd7a58aec4cba9d59f57364ba (diff)
secondTwizzleMatrix
-rw-r--r--libcrystfel/src/taketwo.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libcrystfel/src/taketwo.c b/libcrystfel/src/taketwo.c
index 3024a9d8..1411b8a7 100644
--- a/libcrystfel/src/taketwo.c
+++ b/libcrystfel/src/taketwo.c
@@ -289,6 +289,10 @@ static int generate_rot_mat(struct rvec obs1, struct rvec obs2,
/* Multiply obs2 by rotateSpotDiffMatrix --> obs2vr */
gsl_blas_dgemv(CblasNoTrans, 1.0, rotateSpotDiffMatrix, obs2v,
0.0, obs2vr);
+
+ /* Now we twirl around the firstAxisUnit until the rotated observed
+ * vector matches the second simulated vector as closely as possible. */
+ secondTwizzleMatrix = closest_rotmat(obs2vr, cell2, cell1);
return 1;
}