diff options
author | Thomas White <taw@physics.org> | 2012-03-06 16:10:53 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-03-06 16:10:53 +0100 |
commit | d21f2eb608431cd11b93aa96de3c792713829b44 (patch) | |
tree | 4cd0cf3c4e7efd52d58ecad38b1a1b35b92d4508 /libcrystfel/src/stream.c | |
parent | 3710defb709b7ab33ae7849873c4fb62de96e138 (diff) |
Don't include 1/d in reflection lists, because it's pointless
Diffstat (limited to 'libcrystfel/src/stream.c')
-rw-r--r-- | libcrystfel/src/stream.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libcrystfel/src/stream.c b/libcrystfel/src/stream.c index 7f2e341e..486049bf 100644 --- a/libcrystfel/src/stream.c +++ b/libcrystfel/src/stream.c @@ -285,8 +285,7 @@ void write_chunk(FILE *ofh, struct image *i, struct hdfile *hdfile, int f) if ( i->reflections != NULL ) { fprintf(ofh, REFLECTION_START_MARKER"\n"); - write_reflections_to_file(ofh, i->reflections, - i->indexed_cell); + write_reflections_to_file(ofh, i->reflections); fprintf(ofh, REFLECTION_END_MARKER"\n"); } else { |