aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcppxfel <helenginn@Helen'sMacBookPro>2017-06-29 16:36:22 +0100
committercppxfel <helenginn@Helen'sMacBookPro>2017-06-29 16:36:22 +0100
commit6ebf72a7fb71e68329ed2591a1f5858699026af6 (patch)
tree6202ebca0c0e4e9337d5c4392e401cb6cd2e5738
parent9b110b965ce64bcbf24af9a2336533522394a887 (diff)
Relaxation of tolerances
-rw-r--r--libcrystfel/src/taketwo.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libcrystfel/src/taketwo.c b/libcrystfel/src/taketwo.c
index c9314395..1a76614c 100644
--- a/libcrystfel/src/taketwo.c
+++ b/libcrystfel/src/taketwo.c
@@ -108,10 +108,11 @@ struct TakeTwoCell
#define MAX_NETWORK_MEMBERS (NETWORK_MEMBER_THRESHOLD + 3)
/* Maximum dead ends for a single branch extension during indexing */
-#define MAX_DEAD_ENDS (1)
+#define MAX_DEAD_ENDS (2)
/* Tolerance for two angles to be considered the same */
-#define ANGLE_TOLERANCE (deg2rad(0.5))
+#define ANGLE_TOLERANCE (deg2rad(0.6))
+
#define COSINE_TOLERANCE 0.010
/* Tolerance for rot_mats_are_similar */