diff options
Diffstat (limited to 'src/reflections.c')
-rw-r--r-- | src/reflections.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/reflections.c b/src/reflections.c index c9d83710..93cecca9 100644 --- a/src/reflections.c +++ b/src/reflections.c @@ -64,7 +64,11 @@ void write_reflections(const char *filename, unsigned int *counts, F = lookup_intensity(ref, h, k, l) / N; if ( zone_axis && (l != 0) ) continue; - s = 2.0*resolution(cell, h, k, l); + if ( cell != NULL ) { + s = 2.0*resolution(cell, h, k, l); + } else { + s = 0.0; + } /* h, k, l, I, sigma(I), s */ fprintf(fh, "%3i %3i %3i %f %f %f\n", h, k, l, F, 0.0, s/1.0e9); |