From 4cd25dec3da842e3199f8cd91e4702ddbad37185 Mon Sep 17 00:00:00 2001 From: Artur Glavic Date: Mon, 27 Oct 2025 08:08:52 +0100 Subject: [PATCH] Recreate projection on counting start accounting for possible changes in tau --- eos/reduction_kafka.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/eos/reduction_kafka.py b/eos/reduction_kafka.py index 6656096..90ca054 100644 --- a/eos/reduction_kafka.py +++ b/eos/reduction_kafka.py @@ -87,8 +87,7 @@ class KafkaReduction: self.wait_for = self.serializer.count_stopped self.event_data.restart() self.serializer.new_count_started.clear() - self.proj_yz.clear() - self.proj_tofz.clear() + self.create_projections() return elif self.serializer.count_stopped.is_set() and not self.event_data.stop_counting.is_set(): return self.finish_count()