From c24334e7403fd1d42ccce127d9a9f1d1b46bd6c3 Mon Sep 17 00:00:00 2001 From: Fei Gao Date: Thu, 31 May 2018 14:58:34 -0400 Subject: [PATCH] lowering the tight coincidence --- pax/plugins/peak_processing/ClassifyPeaks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pax/plugins/peak_processing/ClassifyPeaks.py b/pax/plugins/peak_processing/ClassifyPeaks.py index 6afc1db0..c05c56fc 100644 --- a/pax/plugins/peak_processing/ClassifyPeaks.py +++ b/pax/plugins/peak_processing/ClassifyPeaks.py @@ -26,7 +26,7 @@ def transform_event(self, event): # classification based on rise_time and aft if -peak.area_decile_from_midpoint[1] < self.s1_rise_time_bound(peak.area): # Peak rises fast, could be S1 - if peak.tight_coincidence <= 2: + if peak.tight_coincidence <= 1: # Too few PMTs contributing, hard to distinguish from junk peak.type = 'unknown' elif peak.area > 100 or peak.area < 5: