Skip to content

Commit 190318e

Browse files
committed
jetid bug fix
1 parent 4f84f8f commit 190318e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/boostedhh/processors/objects.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def jetid_v12(jets: ak.Array) -> ak.Array:
1818
| (
1919
((np.abs(jets.eta) > 2.7) & (np.abs(jets.eta) <= 3.0))
2020
& jetidtightbit
21-
& (jets.neHEF >= 0.99)
21+
& (jets.neHEF < 0.99)
2222
)
2323
| ((np.abs(jets.eta) > 3.0) & jetidtightbit & (jets.neEmEF < 0.4))
2424
)

0 commit comments

Comments
 (0)