From 044257a73b22eea4113663cabae6fb0cb37bb554 Mon Sep 17 00:00:00 2001 From: Luis Sanchez Date: Mon, 10 Jul 2023 15:23:12 -0500 Subject: [PATCH] hotspot veto --- xedocs/schemas/corrections/__init__.py | 2 ++ xedocs/schemas/corrections/hotspot_veto.py | 7 +++++++ 2 files changed, 9 insertions(+) create mode 100644 xedocs/schemas/corrections/hotspot_veto.py diff --git a/xedocs/schemas/corrections/__init__.py b/xedocs/schemas/corrections/__init__.py index 07cd612..6211502 100644 --- a/xedocs/schemas/corrections/__init__.py +++ b/xedocs/schemas/corrections/__init__.py @@ -19,3 +19,5 @@ from .s1_aft_xyz import * from .avg_se_gain import * from .bayes_model import * +from .som_network import * +from .hotspot_veto import * diff --git a/xedocs/schemas/corrections/hotspot_veto.py b/xedocs/schemas/corrections/hotspot_veto.py new file mode 100644 index 0000000..91df379 --- /dev/null +++ b/xedocs/schemas/corrections/hotspot_veto.py @@ -0,0 +1,7 @@ +""" +id=xenon:xenonnt:analysis:hot_spot_cut_summary +""" + +class HotspotVeto(xd.schemas.corrections.TimeIntervalCorrection): + _ALIAS = 'hotspot_vetos' + value: float \ No newline at end of file