diff options
author | Thomas White <taw@bitwiz.org.uk> | 2009-10-16 11:21:54 +0200 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2009-10-16 11:21:54 +0200 |
commit | 0518160c770cf2c3d26f301d15a1a41517d59123 (patch) | |
tree | 186e8b203b880d2b0d196f27d9a091ad1fad6079 | |
parent | d4091423728c46d15e1f771be032aa62f2bf32e9 (diff) |
More sensible maximum excitation error
-rw-r--r-- | src/relrod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/relrod.c b/src/relrod.c index ec8ad579..793f8993 100644 --- a/src/relrod.c +++ b/src/relrod.c @@ -56,7 +56,7 @@ static void mapping_rotate(double x, double y, double z, void get_reflections(struct image *image, UnitCell *cell) { ImageFeatureList *flist; - double smax = 0.2e9; + double smax = 0.01e9; double tilt, omega, wavenumber; double nx, ny, nz; /* "normal" vector */ double kx, ky, kz; /* Electron wavevector ("normal" times 1/lambda) */ |