aboutsummaryrefslogtreecommitdiff
path: root/src/partialator.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2014-03-18 15:51:39 +0100
committerThomas White <taw@bitwiz.org.uk>2014-03-18 15:51:39 +0100
commit3e325735df98320dca38b5cb9f31a56107271649 (patch)
tree48e4a44540df25e15333d5c859393306ad63b57e /src/partialator.c
parentcaf1fdaafe4f4e2c64caacb86960e4fc831aded3 (diff)
partialator: Show more information about dud patterns
Diffstat (limited to 'src/partialator.c')
-rw-r--r--src/partialator.c25
1 files changed, 22 insertions, 3 deletions
diff --git a/src/partialator.c b/src/partialator.c
index 910ed539..b1ac3f02 100644
--- a/src/partialator.c
+++ b/src/partialator.c
@@ -636,6 +636,8 @@ int main(int argc, char *argv[])
&n_gained, &n_lost,
&mean_p_change);
assert(n_gained == 0); /* That'd just be silly */
+ STATUS("%i gained, %i lost, mean p change = %f\n",
+ n_gained, n_lost, mean_p_change);
as = crystal_get_reflections(cryst);
nobs += select_scalable_reflections(as, reference);
@@ -661,6 +663,9 @@ int main(int argc, char *argv[])
/* Iterate */
for ( i=0; i<n_iter; i++ ) {
+ int n_noref = 0;
+ int n_solve = 0;
+ int n_lost = 0;
int n_dud = 0;
int j;
RefList *comp;
@@ -678,14 +683,28 @@ int main(int argc, char *argv[])
nobs = 0;
for ( j=0; j<n_crystals; j++ ) {
+ int flag;
Crystal *cr = crystals[j];
RefList *rf = crystal_get_reflections(cr);
- if ( crystal_get_user_flag(cr) ) n_dud++;
+ flag = crystal_get_user_flag(cr);
+ if ( flag != 0 ) n_dud++;
+ if ( flag == 1 ) {
+ n_noref++;
+ } else if ( flag == 2 ) {
+ n_solve++;
+ } else if ( flag == 3 ) {
+ n_lost++;
+ }
nobs += select_scalable_reflections(rf, reference);
}
- STATUS("%i crystals could not be refined this cycle.\n", n_dud);
-
+ if ( n_dud ) {
+ STATUS("%i crystals could not be refined this cycle.\n",
+ n_dud);
+ STATUS("%i not enough reflections.\n", n_noref);
+ STATUS("%i solve failed.\n", n_solve);
+ STATUS("%i lost too many reflections.\n", n_lost);
+ }
/* Re-estimate all the full intensities */
reflist_free(full);
full = scale_intensities(crystals, n_crystals,