From 12e7bdb8cb6f6cad293d568dbaa48ce6439ecd43 Mon Sep 17 00:00:00 2001 From: Karim Ahmed <karim.ahmed@xfel.eu> Date: Tue, 10 Dec 2019 15:20:04 +0100 Subject: [PATCH] remove unneeded code --- cal_tools/cal_tools/agipdlib.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/cal_tools/cal_tools/agipdlib.py b/cal_tools/cal_tools/agipdlib.py index 2c2de40f8..47198bc14 100644 --- a/cal_tools/cal_tools/agipdlib.py +++ b/cal_tools/cal_tools/agipdlib.py @@ -1291,16 +1291,24 @@ class AgipdCorrections: return_index=True, return_counts=True) - # Validate calculated CORR INDEX contents. + # Validate calculated CORR INDEX contents by checking difference between + # trainId stored in RAW data and trains from train_diff = np.isin(np.array(self.infile["/INDEX/trainId"]), uq, invert=True) # Insert zeros for missing trains. + # fidxv and cntsv should have same length as + # raw INDEX/.../image/first and INDEX/.../image/count, + # respectively for i, diff in enumerate(train_diff): if diff: if i < len(cntsv): cntsv = np.insert(cntsv, i, 0) - fidxv = np.insert(fidxv, i, 0) + if i == 0: + fidxv = np.insert(fidxv, i, 0) + else: + fidxv = np.insert(fidxv, i, fidxv[i-1]) else: + # append if at the end of the array cntsv = np.append(cntsv, 0) fidxv = np.append(fidxv, 0) -- GitLab