Skip to content

Commit

Permalink
lowering the tight coincidence
Browse files Browse the repository at this point in the history
  • Loading branch information
feigaodm committed May 31, 2018
1 parent 2cee525 commit c24334e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pax/plugins/peak_processing/ClassifyPeaks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit c24334e

Please sign in to comment.