Skip to content

Commit

Permalink
Merge https://github.com/vhbb/cmssw into from-CMSSW_8_0_21
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Veelken committed Jan 27, 2017
2 parents 1deca4f + 39548ad commit d956c24
Show file tree
Hide file tree
Showing 5 changed files with 207 additions and 9 deletions.
2 changes: 1 addition & 1 deletion VHbbAnalysis/Heppy/python/VHbbAnalyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ def additionalRhos(self,event) :
def doQuickTkMET(self,event) :
if not hasattr(event,"pfCands") :
event.pfCands = list(self.handles['pfCands'].product())
event.quickTkMET=sum([x.p4() for x in event.pfCands if x.charge() != 0 and x.dz() < 0.1 and x.dz() > -0.1],ROOT.reco.Particle.LorentzVector())
event.quickTkMET=-sum([x.p4() for x in event.pfCands if x.charge() != 0 and x.dz() < 0.1 and x.dz() > -0.1],ROOT.reco.Particle.LorentzVector())

def initOutputs (self,event) :
event.hJets = []
Expand Down
4 changes: 2 additions & 2 deletions VHbbAnalysis/Heppy/test/crab/heppy_crab_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
config = Configuration()

config.section_("General")
config.General.requestName = 'VHBB_F25_008'
config.General.workArea = '/scratch/arizzi/crab_sub/crab_projects_F25_008a'
config.General.requestName = 'VHBB_F25_009'
config.General.workArea = '/scratch/arizzi/crab_sub/crab_projects_F25_009'
config.General.transferLogs=True

config.section_("JobType")
Expand Down
Loading

0 comments on commit d956c24

Please sign in to comment.