Skip to content

Commit

Permalink
Correcting indent from previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mmasciov committed May 26, 2016
1 parent 588351c commit a5dbf90
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions PhysicsTools/Heppy/python/analyzers/objects/JetAnalyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,10 +167,10 @@ def process(self, event):
for igj, gj in enumerate(self.genJets):
gj.index = igj
# self.matchJets(event, allJets)
if self.matchJetsWithThreshold and not getattr(self.cfg_ana, 'smearJets', False):
self.matchJets(event, [ j for j in allJets if j.pt()>self.cfg_ana.jetPt ]) # To match only jets above chosen threshold
else:
self.matchJets(event, allJets)
if self.matchJetsWithThreshold and not getattr(self.cfg_ana, 'smearJets', False):
self.matchJets(event, [ j for j in allJets if j.pt()>self.cfg_ana.jetPt ]) # To match only jets above chosen threshold
else:
self.matchJets(event, allJets)
if getattr(self.cfg_ana, 'smearJets', False):
self.smearJets(event, allJets)

Expand Down

0 comments on commit a5dbf90

Please sign in to comment.