diff options
author | Thomas White <taw@physics.org> | 2015-07-07 14:16:14 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2015-07-07 14:16:39 +0200 |
commit | 0bcfe3cdf917ae53764c423c7af865352af47920 (patch) | |
tree | b20b1cbf3732c31101c72ab98b66fb958329d136 /src/rejection.c | |
parent | 732d177f54c3c9d060992a9c4831401a4c926b6d (diff) |
partialator: Increase maximum B factor to 1000 A^2, and normalise B factors
Diffstat (limited to 'src/rejection.c')
-rw-r--r-- | src/rejection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rejection.c b/src/rejection.c index a565fec3..f0d6dd3e 100644 --- a/src/rejection.c +++ b/src/rejection.c @@ -175,7 +175,7 @@ void check_rejection(Crystal **crystals, int n, RefList *full) for ( i=0; i<n; i++ ) { /* Reject if B factor modulus is very large */ - if ( fabs(crystal_get_Bfac(crystals[i])) > 1e-18 ) { + if ( fabs(crystal_get_Bfac(crystals[i])) > 1e-17 ) { crystal_set_user_flag(crystals[i], 1); } |