diff options
author | Thomas White <taw@physics.org> | 2014-04-01 16:48:35 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2014-04-01 16:48:35 +0200 |
commit | 1e7a4f59997dea30d0b7aa720684d82fd0d3c9c0 (patch) | |
tree | f1b039c0876b1f2772f22c6570e0b2bab17a60d5 /libcrystfel/src/stream.c | |
parent | 27a1684b8ede89de565f125f228f82f8885bef9e (diff) |
Fix resolution cutoff so that it (apparently) works
Diffstat (limited to 'libcrystfel/src/stream.c')
-rw-r--r-- | libcrystfel/src/stream.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libcrystfel/src/stream.c b/libcrystfel/src/stream.c index 80256829..7860209f 100644 --- a/libcrystfel/src/stream.c +++ b/libcrystfel/src/stream.c @@ -3,12 +3,12 @@ * * Stream tools * - * Copyright © 2013 Deutsches Elektronen-Synchrotron DESY, - * a research centre of the Helmholtz Association. + * Copyright © 2013-2014 Deutsches Elektronen-Synchrotron DESY, + * a research centre of the Helmholtz Association. * Copyright © 2012 Richard Kirian * * Authors: - * 2010-2013 Thomas White <taw@physics.org> + * 2010-2014 Thomas White <taw@physics.org> * 2011 Richard Kirian * 2011 Andrew Aquila * @@ -357,7 +357,7 @@ static void write_crystal(Stream *st, Crystal *cr, int include_reflections) fprintf(st->fh, "diffraction_resolution_limit" " = %.2f nm^-1 or %.2f A\n", crystal_get_resolution_limit(cr)/1e9, - 1e9 / crystal_get_resolution_limit(cr)); + 1e10 / crystal_get_resolution_limit(cr)); fprintf(st->fh, "num_reflections = %i\n", num_reflections(reflist)); |