Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Syntax corrected for MV cut #129

Merged
merged 2 commits into from
Jan 8, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lax/lichens/sciencerun0.py
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ class MuonVeto(ManyLichen):

Contact: Andrea Molinario <andrea.molinario@lngs.infn.it>
"""
version = 2
version = 3

class MuonVetoCoincidence(StringLichen):
"""Checks the distance in time (ns) between a reference position inside the waveform
Expand All @@ -807,13 +807,13 @@ class MuonVetoCoincidence(StringLichen):
with respect to the reference position.
"""

string = ("nearest_muon_veto_trigger < -2e6 | nearest_muon_veto_trigger > 3e6")
string = "nearest_muon_veto_trigger < -2e6 | nearest_muon_veto_trigger > 3e6"

class MuonVetoOn(StringLichen):
"""Remove events when MV was not working (abs(nearest_muon_veto_trigger)>20 s).
"""

string = ("nearest_muon_veto_trigger > -2e10 & nearest_muon_veto_trigger < 2e10)")
string = "nearest_muon_veto_trigger > -2e10 & nearest_muon_veto_trigger < 2e10"


class KryptonMisIdS1(StringLichen):
Expand Down