From 8e1073cfd18238c452611b9693bb3376deecc35b Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Tue, 4 Nov 2025 10:24:49 +0100 Subject: [PATCH] removed skipping erroring cases; added skipping constant entries --- dap/accumulator.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/dap/accumulator.py b/dap/accumulator.py index 348659d..cf3105d 100644 --- a/dap/accumulator.py +++ b/dap/accumulator.py @@ -9,10 +9,13 @@ from zmqsocks import ZMQSocketsAccumulator, make_address OUTPUT_DIR = "/gpfs/photonics/swissfel/buffer/dap/data" ENTRIES_TO_SKIP = [ - # send: ValueError: setting an array element with a sequence. The requested array has an inhomogeneous shape after 1 dimensions. The detected shape was (2,) + inhomogeneous part. - "roi_intensities_proj_x", - # recv: ValueError: cannot reshape array of size 4 into shape (2,) - "roi_intensities_x" + "custom_script", + "detector_name", + "gain_file", + "htype", + "pedestal_file", + "pulse_id", + "timestamp" ]