From 07406612b1532be7bcf95e9e453bbf02274e45c2 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Mon, 20 Oct 2025 11:52:57 +0200 Subject: [PATCH] skip roi_intensities_proj_x --- dap/accumulator.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dap/accumulator.py b/dap/accumulator.py index b3ec3b8..aebf006 100644 --- a/dap/accumulator.py +++ b/dap/accumulator.py @@ -6,6 +6,10 @@ from zmqsocks import ZMQSocketsAccumulator, make_address OUTPUT_DIR = "/gpfs/photonics/swissfel/buffer/dap/data" +ENTRIES_TO_SKIP = [ + "roi_intensities_proj_x" # 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. +] + def main(): parser = argparse.ArgumentParser()