diff options
author | Thomas White <taw@physics.org> | 2019-06-25 17:09:51 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2019-06-25 17:09:51 +0200 |
commit | 46d7ed714efab8c7db8ee253f5ea5eb0f588631b (patch) | |
tree | b18e3e03d66c7a28b0cf7a1d174a5e02264a054f /libcrystfel/src/stream.c | |
parent | 811633ea931447f1bb2ebf3c517195e264916fc6 (diff) |
read_stream_reflections_*: Set symmetric indices for reflections
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 6b8f3565..0d12d600 100644 --- a/libcrystfel/src/stream.c +++ b/libcrystfel/src/stream.c @@ -350,6 +350,7 @@ static RefList *read_stream_reflections_2_3(Stream *st, struct detector *det) set_peak(refl, pk); set_mean_bg(refl, bg); set_redundancy(refl, 1); + set_symmetric_indices(refl, h, k, l); } } while ( rval != NULL ); @@ -431,6 +432,7 @@ static RefList *read_stream_reflections_2_1(Stream *st, struct detector *det) } set_esd_intensity(refl, sigma); set_redundancy(refl, cts); + set_symmetric_indices(refl, h, k, l); ph = strtod(phs, &v); if ( v != phs ) set_phase(refl, deg2rad(ph)); @@ -509,6 +511,7 @@ static RefList *read_stream_reflections_2_2(Stream *st, struct detector *det) set_redundancy(refl, 1); set_peak(refl, pk); set_mean_bg(refl, bg); + set_symmetric_indices(refl, h, k, l); } |