From 63741b85b77d5a822e95318f549fe4d2392e29b8 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Tue, 8 Sep 2015 15:30:48 +0200 Subject: Reject big B factors before trying PR --- src/rejection.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'src/rejection.c') diff --git a/src/rejection.c b/src/rejection.c index ef185034..fbee6f72 100644 --- a/src/rejection.c +++ b/src/rejection.c @@ -193,7 +193,7 @@ static void show_duds(Crystal **crystals, int n_crystals) } -void check_rejection(Crystal **crystals, int n, RefList *full, double max_B) +void check_rejection(Crystal **crystals, int n, RefList *full) { int i; int n_acc = 0; @@ -202,14 +202,7 @@ void check_rejection(Crystal **crystals, int n, RefList *full, double max_B) //if ( full != NULL ) check_ccs(crystals, n, full); for ( i=0; i max_B ) { - crystal_set_user_flag(crystals[i], PRFLAG_BIGB); - } - if ( crystal_get_user_flag(crystals[i]) == 0 ) n_acc++; - } show_duds(crystals, n); -- cgit v1.2.3