diff options
author | Thomas White <taw@physics.org> | 2010-10-07 10:50:23 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:01 +0100 |
commit | 9561b62b7ab15523ed90d10fbbe176926a890eb8 (patch) | |
tree | 7f8d354b649f9756492f53d72acc926c8ec36f85 | |
parent | d0df22f90a9ed721d3f1facff49b6b162155c428 (diff) |
compare_hkl: Don't reject any reflections (for now)
-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 096d1eb5..9baf3e29 100644 --- a/src/compare_hkl.c +++ b/src/compare_hkl.c @@ -276,7 +276,7 @@ int main(int argc, char *argv[]) if ( d > 55.0e-10 ) ig = 1; //if ( d < 15.0e-10 ) ig = 1; - if ( ig ) continue; + //if ( ig ) continue; set_intensity(ref2_transformed, h, k, l, val2); set_intensity(out, h, k, l, val1/val2); |