From 3229130670120c886c530b7d2853b07ff1026a59 Mon Sep 17 00:00:00 2001 From: Derek Glazier Date: Thu, 18 Jul 2024 13:24:00 +0100 Subject: [PATCH] change in rich beahviour with new hipo was fixed by insisting notify called in particle_detector, else getRows returning -1 --- Clas12Banks/particle_detector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Clas12Banks/particle_detector.h b/Clas12Banks/particle_detector.h index 0b29255..155c540 100644 --- a/Clas12Banks/particle_detector.h +++ b/Clas12Banks/particle_detector.h @@ -70,8 +70,8 @@ namespace clas12 { //////////////////////////////////////////////////////////////// //override header notify, called at start of event void notify() override { - if(_detector_id_order==-1) return; bank::notify(); + if(_detector_id_order==-1) return; scanIndex(); }