Skip to content

Commit

Permalink
Allow saving of isolated cut (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
dachengx committed Jun 6, 2024
1 parent 906d2d7 commit 739cfbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion axidence/plugins/cuts/cut_isolated_s1.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class IsolatedS1Mask(CutPlugin):
cut_name = "cut_isolated_s1"
data_kind = "peaks"
cut_description = "Isolated S1 selection, a peak-level cut."
save_when = SaveWhen.NEVER
save_when = SaveWhen.EXPLICIT

isolated_s1_area_range = straxen.URLConfig(
default=(1, 150),
Expand Down
2 changes: 1 addition & 1 deletion axidence/plugins/cuts/cut_isolated_s2.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class IsolatedS2Mask(CutPlugin):
cut_name = "cut_isolated_s2"
data_kind = "events"
cut_description = "Isolated S2 selection, a event-level cut."
save_when = SaveWhen.NEVER
save_when = SaveWhen.EXPLICIT

isolated_s2_area_range = straxen.URLConfig(
default=(trigger_min_area, 2e4),
Expand Down

0 comments on commit 739cfbc

Please sign in to comment.