Skip to content

Commit

Permalink
Merge pull request cms-sw#127 from arizzi/VHthrsholdSA
Browse files Browse the repository at this point in the history
raise pt thrshold for VH SA. close vhbb#123
  • Loading branch information
arizzi committed Jul 22, 2015
2 parents f6c77a9 + f1f024d commit 0b28068
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VHbbAnalysis/Heppy/python/VHbbAnalyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def doSoftActivityVH(self,event) :
excludedJets=event.hJetsCSV+event.selectedElectrons+event.selectedMuons
if event.isrJetVH >= 0 :
excludedJets+=[event.cleanJetsAll[event.isrJetVH]]
event.softActivityVHJets=self.softActivity(event,j1,j2,excludedJets,-1000)
event.softActivityVHJets=[x for x in self.softActivity(event,j1,j2,excludedJets,-1000) if x.pt() > 2.0 ]


def softActivity(self,event,j1,j2,excludedJets,dR0=0.4) :
Expand Down

0 comments on commit 0b28068

Please sign in to comment.