From 8e1743eb1f99ca3692845614e38df2305d148b71 Mon Sep 17 00:00:00 2001 From: PrinceWalnut Date: Wed, 6 Dec 2023 12:23:11 -0500 Subject: [PATCH] Removed pointless line --- src/laue_dials/algorithms/integration.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/laue_dials/algorithms/integration.py b/src/laue_dials/algorithms/integration.py index e5e91c0..4ce03b7 100644 --- a/src/laue_dials/algorithms/integration.py +++ b/src/laue_dials/algorithms/integration.py @@ -159,7 +159,6 @@ def update_profile(self, alpha=0.9): def integrate(self): bg = self.background - bg + self.counts self.I = ((self.counts - bg) * self.fg_mask).sum() self.SigI = np.sqrt(((self.counts + bg) * self.fg_mask).sum())