diff options
author | Thomas White <taw@physics.org> | 2013-04-11 17:35:25 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2013-04-11 18:20:14 +0200 |
commit | e53110088bc818ef5b551b65bdaf702d9f04efc5 (patch) | |
tree | 622a82b379431bd7f179bd38ea5dad46b8506163 /src/check_hkl.c | |
parent | f7314aa835d5379e3fdd76845f401c26790f171c (diff) |
Remove hacked-in systematic absence checks
Tom is an idiot
Diffstat (limited to 'src/check_hkl.c')
-rw-r--r-- | src/check_hkl.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/check_hkl.c b/src/check_hkl.c index 0f485654..71f107da 100644 --- a/src/check_hkl.c +++ b/src/check_hkl.c @@ -199,9 +199,6 @@ static void plot_shells(RefList *list, UnitCell *cell, const SymOpList *sym, d = 2.0 * resolution(cell, h, k, l); if ( forbidden_reflection(cell, h, k, l) ) continue; - if ( h % 2 ) continue; - if ( k % 2 ) continue; - if ( l % 2 ) continue; bin = -1; for ( i=0; i<nshells; i++ ) { @@ -235,9 +232,6 @@ static void plot_shells(RefList *list, UnitCell *cell, const SymOpList *sym, get_indices(refl, &h, &k, &l); if ( forbidden_reflection(cell, h, k, l) ) continue; - if ( h % 2 ) continue; - if ( k % 2 ) continue; - if ( l % 2 ) continue; d = resolution(cell, h, k, l) * 2.0; val = get_intensity(refl); @@ -276,9 +270,6 @@ static void plot_shells(RefList *list, UnitCell *cell, const SymOpList *sym, get_indices(refl, &h, &k, &l); if ( forbidden_reflection(cell, h, k, l) ) continue; - if ( h % 2 ) continue; - if ( k % 2 ) continue; - if ( l % 2 ) continue; d = resolution(cell, h, k, l) * 2.0; val = get_intensity(refl); |