From a06a6f2718f0851075b8ba7f39518cc7183d0a5e Mon Sep 17 00:00:00 2001 From: Francesco Poppi Date: Tue, 10 Dec 2024 16:09:13 +0100 Subject: [PATCH] This commit removes the requirement to have a certain amount of opHits above threshold. I wanted to have this variable filled in the data product, but this addition needs to be coordinated with sbnobj and sbnanaobj. --- icaruscode/CRT/CRTPMTMatchingProducer_module.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icaruscode/CRT/CRTPMTMatchingProducer_module.cc b/icaruscode/CRT/CRTPMTMatchingProducer_module.cc index f496ffba9..234aca027 100644 --- a/icaruscode/CRT/CRTPMTMatchingProducer_module.cc +++ b/icaruscode/CRT/CRTPMTMatchingProducer_module.cc @@ -581,14 +581,14 @@ namespace sbn::crt { << ") cm [" << hits.size() << " op.hits] -> first time: " << firstOpHitPeakTime << " us, centroid: " << flash_pos << " cm"; } - + /* if (nPMTsTriggering < fnOpHitToTrigger) { mf::LogTrace("CRTPMTMatchingProducer") << " => skipped (only " << nPMTsTriggering << " < " << fnOpHitToTrigger << " hits above threshold)"; continue; } - + */ double const thisRelGateTime = triggerGateDiff + tflash * 1e3; // ns bool const thisInTime_gate = thisRelGateTime > BeamGateMin && thisRelGateTime < BeamGateMax;