From c85772f137f2c3d31bcd525163a72c574af138c3 Mon Sep 17 00:00:00 2001 From: ahmedk <karim.ahmed@xfel.eu> Date: Thu, 8 Feb 2024 10:54:34 +0100 Subject: [PATCH] remove redundant copy --- notebooks/Gotthard2/Correction_Gotthard2_NBC.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/notebooks/Gotthard2/Correction_Gotthard2_NBC.ipynb b/notebooks/Gotthard2/Correction_Gotthard2_NBC.ipynb index 13ea96c35..902be1ccd 100644 --- a/notebooks/Gotthard2/Correction_Gotthard2_NBC.ipynb +++ b/notebooks/Gotthard2/Correction_Gotthard2_NBC.ipynb @@ -480,9 +480,9 @@ " gain = np.flip(gain, axis=-1)\n", "\n", " if gh2_detector == \"25um\":\n", - " data_stored[..., i::2] = data_corr.copy()\n", - " gain_stored[..., i::2] = gain.copy()\n", - " mask_stored[..., i::2] = mask.copy()\n", + " data_stored[..., i::2] = data_corr\n", + " gain_stored[..., i::2] = gain\n", + " mask_stored[..., i::2] = mask\n", " else: # \"50um\"\n", " data_stored = data_corr\n", " gain_stored = gain\n", -- GitLab