diff options
author | Thomas White <taw@physics.org> | 2014-04-15 16:15:22 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2014-04-15 16:15:22 +0200 |
commit | 9c865916c5a71be21580213b484d5a196f793eab (patch) | |
tree | d11b58d691a8dce9277c56bdf59036620a0a47bc /libcrystfel/src/stream.c | |
parent | f491f6b322a9cc17fa82706dfc3a0d31e788cc87 (diff) |
Set mosaicity (to zero) in crystals from stream
Diffstat (limited to 'libcrystfel/src/stream.c')
-rw-r--r-- | libcrystfel/src/stream.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libcrystfel/src/stream.c b/libcrystfel/src/stream.c index 74b420ed..f11d5d64 100644 --- a/libcrystfel/src/stream.c +++ b/libcrystfel/src/stream.c @@ -623,6 +623,9 @@ void read_crystal(Stream *st, struct image *image) } + /* Unused at the moment */ + crystal_set_mosaicity(cr, 0.0); + /* Add crystal to the list for this image */ n = image->n_crystals+1; crystals_new = realloc(image->crystals, n*sizeof(Crystal *)); |