diff options
author | Thomas White <taw@physics.org> | 2010-09-22 18:46:23 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:26:59 +0100 |
commit | f82c4a761826f1efc98b7fe6f73e97b1b05da91a (patch) | |
tree | 6966154ec442973ba440d7ca1c256cd490a8f8e7 | |
parent | 86689720f52423fe6a71f7b893a50af653254e2a (diff) |
compare_hkl: Get the correct equivalent
-rw-r--r-- | src/compare_hkl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compare_hkl.c b/src/compare_hkl.c index f2e9a184..42e40fc7 100644 --- a/src/compare_hkl.c +++ b/src/compare_hkl.c @@ -247,7 +247,7 @@ int main(int argc, char *argv[]) val1 = lookup_intensity(ref1, h, k, l); val2 = lookup_intensity(ref2, he, ke, le); sig1 = lookup_sigma(esd1, h, k, l); - sig2 = lookup_sigma(esd2, h, k, l); + sig2 = lookup_sigma(esd2, he, ke, le); if ( val1 < 3.0 * sig1 ) { rej1++; |