ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/CmsHi/JetAnalysis/python/ExtraJetReco_cff.py
Revision: 1.1
Committed: Tue Jul 12 14:12:03 2011 UTC (13 years, 9 months ago) by frankma
Content type: text/x-python
Branch: MAIN
CVS Tags: hi44X_02, hi441_1, hi441_0, hi413_11, hi413_10, hi413_09, hi413_08, hi413_07, hi413_06, hi413_05, hi413_04, hi413_03, hi413_02, hi413_01, hi39X_01, tag_d20110915, cmssw39x_base, cmssw39X_base
Branch point for: cmssw39x_branch
Log Message:
pf and calo jet analysis in 39X

File Contents

# User Rev Content
1 frankma 1.1 import FWCore.ParameterSet.Config as cms
2    
3     # reco jet with russian pileup subtraction
4     from RecoHI.HiJetAlgos.HiRecoJets_cff import *
5     from RecoHI.HiJetAlgos.HiRecoPFJets_cff import *
6    
7     iterativeConePu5CaloJets.doPVCorrection = cms.bool(True)
8     iterativeConePu5CaloJets.srcPVs = 'hiSelectedVertex'
9    
10     akPu5PFJets = ak5PFJets.clone()
11     akPu5PFJets.src = 'PFTowers'
12     akPu5PFJets.jetType = 'BasicJet'
13     akPu5PFJets.doPUOffsetCorr = True
14     akPu5PFJets.sumRecHits = False
15    
16     akPu3PFJets = akPu5PFJets.clone()
17     akPu3PFJets.rParam = cms.double(0.3)
18    
19     # pileup subtraction jet exclusion pt min
20     iterativeConePu5CaloJets.puPtMin = cms.double(10.0)
21     akPu5PFJets.puPtMin = cms.double(25.0)
22     akPu3PFJets.puPtMin = cms.double(15.0)