aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/stream.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2014-11-09 06:23:27 +0100
committerThomas White <taw@physics.org>2014-11-09 06:23:27 +0100
commitecce96b99c98c2b5efadbf186d2085115dbc142a (patch)
tree4cf77532880d9a68a4bf3e48990d14867055e269 /libcrystfel/src/stream.c
parent356733c418dacf19d3930e37e08ddcdc17311c3a (diff)
Record number of implausibly negative reflections in stream
Diffstat (limited to 'libcrystfel/src/stream.c')
-rw-r--r--libcrystfel/src/stream.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libcrystfel/src/stream.c b/libcrystfel/src/stream.c
index e4ed4caf..07568024 100644
--- a/libcrystfel/src/stream.c
+++ b/libcrystfel/src/stream.c
@@ -585,6 +585,8 @@ static void write_crystal(Stream *st, Crystal *cr, int include_reflections)
num_integrated_reflections(reflist));
fprintf(st->fh, "num_saturated_reflections = %lli\n",
crystal_get_num_saturated_reflections(cr));
+ fprintf(st->fh, "num_implausible_reflections = %lli\n",
+ crystal_get_num_implausible_reflections(cr));
}