Skip to content

Commit

Permalink
add s2 pattern map schema
Browse files Browse the repository at this point in the history
  • Loading branch information
jmosbacher committed Aug 22, 2023
1 parent ebebb06 commit dbcf204
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions xedocs/schemas/corrections/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@
from .som_network import *
from .hotspot_veto_cut import *
from .photoionization_strength import *
from .s2_pattern_map import *
22 changes: 22 additions & 0 deletions xedocs/schemas/corrections/s2_pattern_map.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
"""
The pattern likelihood cut defined in SR0 was defined with a data-driven S2 map and a Gaussian
smeared likelihood definition, using the Tensorflow framework. The data-driven S2 map is trained
using a neural network, using S2 optical Monte Carlo simulation as an initial guess, to best-fit
event_area_per_channel. Details can be found in the SR0 note. As the SR0 method relied on trainable
parameters for each PMT the S2 pattern likelihood needs to be retrained to reflect the changed PMT list in SR1.
SR0 S2 pattern map note
https://xe1t-wiki.lngs.infn.it/doku.php?id=shenyang:s2_pattern_likelihood (Shenyang)
SR2 S2 pattern map note
https://xe1t-wiki.lngs.infn.it/doku.php?id=xenon:xenon1t:jacques:nt_sr1_s2pl (Jacques)
"""

from .base_references import BaseMap


class S2XYMap(BaseMap):
_ALIAS = "s2_pattern_maps"

0 comments on commit dbcf204

Please sign in to comment.