From efd297b3d510c498e4f4d950c2f31f5f2b318504 Mon Sep 17 00:00:00 2001 From: Shingo Kazama Date: Thu, 4 Jan 2018 15:28:34 +0900 Subject: [PATCH 1/4] Update on S1PatternLikelihood cut It was found that previous s1 pattern likelihood is calculated based on observed positions. Because expected PMT hit-patterns are calculated using true interact positions, thus s1 pattern likelihood should also be calculated using field-distortion-corrected positions. In PositionReconstruction minitrees, there is a variable named "s1_pattern_fit_hax", and the cut is reoptimized based on this variable. Details can be seen in https://xe1t-wiki.lngs.infn.it/doku.php?id=xenon:xenon1t:kazama:s1_pattern_cut_sr1#update_2018_jan_4th --- lax/lichens/sciencerun0.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lax/lichens/sciencerun0.py b/lax/lichens/sciencerun0.py index d97ba1d..54e4bab 100644 --- a/lax/lichens/sciencerun0.py +++ b/lax/lichens/sciencerun0.py @@ -484,13 +484,13 @@ class S1PatternLikelihood(StringLichen): SR0: xenon:xenon1t:analysis:summary_note:s1_pattern_likelihood_cut SR1: xenon:xenon1t:kazama:s1_pattern_cut_sr1 - Requires Extended minitrees. + Requires PositionReconstruction minitrees. Contact: Shingo Kazama """ - version = 1 - string = "s1_pattern_fit < -17.384885 + 24.894875*s1**0.5 + 2.794984*s1 -0.237268*s1**1.5 + 0.005549*s1**2.0" - + version = 2 + string = "s1_pattern_fit_hax < -23.288612 + 28.928316*s1**0.5 + 1.942163*s1 -0.173226*s1**1.5 + 0.003968*s1**2.0" + class S2AreaFractionTop(Lichen): """Cuts events with an unusual fraction of S2 on top array. From 8f33273a6df30f30ccc8cfef3e0ece20008948fd Mon Sep 17 00:00:00 2001 From: Shingo Kazama Date: Thu, 4 Jan 2018 19:57:36 +0900 Subject: [PATCH 2/4] Update sciencerun0.py --- lax/lichens/sciencerun0.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lax/lichens/sciencerun0.py b/lax/lichens/sciencerun0.py index 54e4bab..36d85b7 100644 --- a/lax/lichens/sciencerun0.py +++ b/lax/lichens/sciencerun0.py @@ -490,7 +490,7 @@ class S1PatternLikelihood(StringLichen): version = 2 string = "s1_pattern_fit_hax < -23.288612 + 28.928316*s1**0.5 + 1.942163*s1 -0.173226*s1**1.5 + 0.003968*s1**2.0" - + class S2AreaFractionTop(Lichen): """Cuts events with an unusual fraction of S2 on top array. From a1d239ad5b3c27cf7882cd650c38bc43b452501d Mon Sep 17 00:00:00 2001 From: Patrick de Perio Date: Thu, 4 Jan 2018 15:46:01 -0500 Subject: [PATCH 3/4] Add Wiki note link and hax ref for new variable --- lax/lichens/sciencerun0.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lax/lichens/sciencerun0.py b/lax/lichens/sciencerun0.py index 36d85b7..03357ec 100644 --- a/lax/lichens/sciencerun0.py +++ b/lax/lichens/sciencerun0.py @@ -482,9 +482,10 @@ class S1PatternLikelihood(StringLichen): Details of the likelihood and cut definitions can be seen in the following notes. SR0: xenon:xenon1t:analysis:summary_note:s1_pattern_likelihood_cut - SR1: xenon:xenon1t:kazama:s1_pattern_cut_sr1 + SR1: xenon:xenon1t:kazama:s1_pattern_cut_sr1, + xenon:xenon1t:kazama:s1_pattern_cut_sr1#update_2018_jan_4th - Requires PositionReconstruction minitrees. + Requires PositionReconstruction minitrees (hax#174). Contact: Shingo Kazama """ From de030991559a21150006733dcebc70033b3cc0d0 Mon Sep 17 00:00:00 2001 From: Patrick de Perio Date: Thu, 4 Jan 2018 15:54:48 -0500 Subject: [PATCH 4/4] lint fix --- lax/lichens/sciencerun0.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lax/lichens/sciencerun0.py b/lax/lichens/sciencerun0.py index 03357ec..9955ff5 100644 --- a/lax/lichens/sciencerun0.py +++ b/lax/lichens/sciencerun0.py @@ -482,7 +482,7 @@ class S1PatternLikelihood(StringLichen): Details of the likelihood and cut definitions can be seen in the following notes. SR0: xenon:xenon1t:analysis:summary_note:s1_pattern_likelihood_cut - SR1: xenon:xenon1t:kazama:s1_pattern_cut_sr1, + SR1: xenon:xenon1t:kazama:s1_pattern_cut_sr1, xenon:xenon1t:kazama:s1_pattern_cut_sr1#update_2018_jan_4th Requires PositionReconstruction minitrees (hax#174).