diff options
author | Thomas White <taw@physics.org> | 2014-05-23 16:17:35 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2014-05-23 16:17:35 +0200 |
commit | 229cbd2c0377ed5595178d3c299fada519507233 (patch) | |
tree | cad418b76ad2ebc66b266e4096607d3bcffe3094 /src/scaling-report.c | |
parent | ddd55d93f37a76f30948a25baf5ae221dacd80ca (diff) |
Simplify criteria for scaling, merging and PR
Diffstat (limited to 'src/scaling-report.c')
-rw-r--r-- | src/scaling-report.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/scaling-report.c b/src/scaling-report.c index 85ed0ad2..351d2dbd 100644 --- a/src/scaling-report.c +++ b/src/scaling-report.c @@ -249,8 +249,6 @@ static void partiality_graph(cairo_t *cr, Crystal **crystals, int n, Reflection *f; int bin; - if ( !get_scalable(refl) ) continue; - get_indices(refl, &h, &k, &l); f = find_refl(full, h, k, l); if ( f == NULL ) continue; @@ -364,8 +362,6 @@ static void partiality_histogram(cairo_t *cr, Crystal **crystals, int n, signed int h, k, l; Reflection *f; - if ( !get_scalable(refl) ) continue; - get_indices(refl, &h, &k, &l); f = find_refl(full, h, k, l); if ( f == NULL ) continue; @@ -604,8 +600,6 @@ static void intensity_histogram(cairo_t *cr, Crystal **crystals, int n, { double Iobs, pcalc, Ifull_est; - if ( !get_scalable(f) ) continue; - pcalc = get_partiality(f); Iobs = get_intensity(f); Ifull_est = Iobs / (pcalc * osf); @@ -639,8 +633,6 @@ static void intensity_histogram(cairo_t *cr, Crystal **crystals, int n, { double Iobs, pcalc, Ifull_est; - if ( !get_scalable(f) ) continue; - pcalc = get_partiality(f); Iobs = get_intensity(f); Ifull_est = Iobs / (pcalc * osf); |