diff options
author | Thomas White <taw@physics.org> | 2018-09-27 16:56:51 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2018-09-27 16:56:51 +0200 |
commit | ffd48c0085f6f7a609079d0a4cfa2dd2a72c1e26 (patch) | |
tree | a4c66c10d726e1badb3fa74eb24b57bb82789f0b /libcrystfel/src/stream.c | |
parent | b821461fff84478d5f3ee56aa001d2afe31e55b8 (diff) |
Write in stream whether crystal was selected as a "hit" or not
Diffstat (limited to 'libcrystfel/src/stream.c')
-rw-r--r-- | libcrystfel/src/stream.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libcrystfel/src/stream.c b/libcrystfel/src/stream.c index 40133c93..bcd2627e 100644 --- a/libcrystfel/src/stream.c +++ b/libcrystfel/src/stream.c @@ -832,6 +832,7 @@ int write_chunk(Stream *st, struct image *i, struct imagefile *imfile, fprintf(st->fh, "Image serial number: %i\n", i->serial); + fprintf(st->fh, "hit = %i\n", i->hit); indexer = indexer_str(i->indexed_by); fprintf(st->fh, "indexed_by = %s\n", indexer); free(indexer); |