Skip to content

Commit

Permalink
Merge pull request #8 from nurfikri89/eff_analysis_nano_run2_updateFo…
Browse files Browse the repository at this point in the history
…rPR_v2

Switch off trigger filterBits check
  • Loading branch information
nurfikri89 authored Jun 9, 2020
2 parents b7f0795 + fee89be commit 302d63d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Skimmer/crab/crab_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Set version number (CHECK)
#
version="DiMuonSkim_v3p1"
version="DiMuonSkim_v3p2"
#
# Set request name prefx
#
Expand Down
16 changes: 8 additions & 8 deletions Skimmer/python/SkimmerDiLepton.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,10 +309,10 @@ def passZBosonSelection(self, event):
for obj in event.trigObjsAll:
if not(obj.id == 13):
continue
if not(obj.filterBits&1):
continue
if not(obj.filterBits&16):
continue
# if not(obj.filterBits&1):
# continue
# if not(obj.filterBits&16):
# continue
if(event.muonsTight[0].DeltaR(obj) < 0.1):
event.passLep0TrigMatch = True
if(event.muonsTight[1].DeltaR(obj) < 0.1):
Expand Down Expand Up @@ -346,10 +346,10 @@ def passZBosonSelection(self, event):
for obj in event.trigObjsAll:
if not(obj.id == 11):
continue
if not(obj.filterBits&1):
continue
if not(obj.filterBits&16):
continue
# if not(obj.filterBits&1):
# continue
# if not(obj.filterBits&16):
# continue
if(event.electronsTight[0].DeltaR(obj) < 0.1):
event.passLep0TrigMatch = True
if(event.electronsTight[1].DeltaR(obj) < 0.1):
Expand Down

0 comments on commit 302d63d

Please sign in to comment.