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

Fix bug in FV z-optimization analysis #145

Merged
merged 4 commits into from
Feb 26, 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
9 changes: 5 additions & 4 deletions lax/lichens/sciencerun0.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,11 +260,12 @@ class FiducialZOptimized(StringLichen):
This first version is a bit rough and may be improved by understanding the underlying BG KDE
and errors better.

https://xe1t-wiki.lngs.infn.it/doku.php?id=xenon:xenon1t:analysis:sciencerun1:summary_fiducial_volume
https://xe1t-wiki.lngs.infn.it/doku.php?id=xenon:xenon1t:analysis:sciencerun1:summary_fiducial_volume_v2
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"""
version = 0
string = "(-95 < z_3d_nn) & (z_3d_nn < -7) & \
(z_3d_nn < 27.2929 - 0.0276385*r_3d_nn*r_3d_nn)"
version = 1
string = "(-95 < z_3d_nn) & (z_3d_nn < -8) & (r_3d_nn < 42.8387) & \
(z_3d_nn < 5.71966 - 0.0149755*r_3d_nn*r_3d_nn) & \
(z_3d_nn > -157.587 + 0.0405219*r_3d_nn*r_3d_nn)"


FV_CONFIGS = [
Expand Down