Skip to content

Commit

Permalink
Update filters and process_options
Browse files Browse the repository at this point in the history
  • Loading branch information
achiefa committed Dec 9, 2024
1 parent 2033c1d commit ae098cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions validphys2/src/validphys/cuts/filters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -246,17 +246,17 @@

- dataset: CMS_Z0J_8TEV_PT-Y
reason: Avoid the region where resummation effects become important.
rule: "pT2 >= 30**2"
rule: "pT >= 30"

- dataset: CMS_Z0J_8TEV_PT-Y
reason: Avoid the region where EWK corrections are important.
rule: "pT2 <= 170**2"
rule: "pT <= 170"

- dataset: CMS_Z0J_8TEV_PT-Y
reason: |
removes the last rapidity bin, where we cannot provide a decent
description due to unknown reasons.
rule: "etay <= 1.6"
rule: "abs_y <= 1.6"

- dataset: ATLAS_Z0_8TEV_LOWMASS_M-Y
reason: Avoid overlap with the high mass ATLAS2DDY8TEV dataset.
Expand Down
4 changes: 2 additions & 2 deletions validphys2/src/validphys/process_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,8 @@ def _dybosonptrap_xq2map(kin_info):
using the rapidity of the final lepton pair.
"""
pT = kin_info[_Vars.pT]
eta = kin_info.get_one_of(_Vars.eta, _Vars.y)
m_ll2 = kin_info[_Vars.m_ll2]
eta = kin_info.get_one_of(_Vars.eta, _Vars.y, _Vars.abs_y)
m_ll2 = kin_info.get_one_of(_Vars.m_ll2, _Vars.m_Z2)
sqrts = kin_info[_Vars.sqrts]
ET2 = m_ll2 + pT * pT
x1 = (np.sqrt(ET2) + pT) / sqrts * np.exp(-eta)
Expand Down

0 comments on commit ae098cc

Please sign in to comment.