diff options
author | cppxfel <helenginn@Helen'sMacBookPro> | 2017-06-29 16:36:22 +0100 |
---|---|---|
committer | cppxfel <helenginn@Helen'sMacBookPro> | 2017-06-29 16:36:22 +0100 |
commit | 6ebf72a7fb71e68329ed2591a1f5858699026af6 (patch) | |
tree | 6202ebca0c0e4e9337d5c4392e401cb6cd2e5738 | |
parent | 9b110b965ce64bcbf24af9a2336533522394a887 (diff) |
Relaxation of tolerances
-rw-r--r-- | libcrystfel/src/taketwo.c | 5 |
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 */ |