diff options
author | Yaroslav Gevorkov <yaroslav.gevorkov@desy.de> | 2018-07-11 13:57:59 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2018-07-11 14:02:29 +0200 |
commit | 10ca0fd3a600884cddebce4e639b4d12c3ce211d (patch) | |
tree | 88337f452e779f2d367c01e473e59b32caec8eba /libcrystfel/src | |
parent | 63ed5d92eb6cb01cd5c2b0c0bd78bfbede132824 (diff) |
reduce minimum angle separation for similarity check of lattices
Diffstat (limited to 'libcrystfel/src')
-rw-r--r-- | libcrystfel/src/index.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcrystfel/src/index.c b/libcrystfel/src/index.c index b846574d..d75f28ed 100644 --- a/libcrystfel/src/index.c +++ b/libcrystfel/src/index.c @@ -671,7 +671,7 @@ static int try_indexer(struct image *image, IndexingMethod indm, if ( compare_cells(crystal_get_cell(cr), crystal_get_cell(that_cr), - 0.1, deg2rad(5.0), NULL) ) + 0.1, deg2rad(0.5), NULL) ) { crystal_set_user_flag(cr, 1); } |