diff options
author | Thomas White <taw@physics.org> | 2021-07-21 13:26:37 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2021-07-21 15:34:33 +0200 |
commit | 7e5536832b22036a634a74e16073b4762a416e29 (patch) | |
tree | 25799eb139d235f524a80c53fb25d0c9f64eb6f1 /libcrystfel/src/integration.c | |
parent | 760f17f56b7f79f67a9029cbe7cc55a0acccd3b9 (diff) |
Reduce variable scope where possible
Diffstat (limited to 'libcrystfel/src/integration.c')
-rw-r--r-- | libcrystfel/src/integration.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libcrystfel/src/integration.c b/libcrystfel/src/integration.c index 2375388f..e797d26b 100644 --- a/libcrystfel/src/integration.c +++ b/libcrystfel/src/integration.c @@ -340,10 +340,9 @@ static void fit_gradient_bg(struct intcontext *ic, struct peak_box *bx) for ( p=0; p<ic->w; p++ ) { for ( q=0; q<ic->w; q++ ) { - double bi; - if ( bx->bm[p + ic->w*q] == BM_BG ) { + double bi; bi = boxi(ic, bx, p, q); addv(v, 0, bi*p); |