ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/CmsHi/JetAnalysis/python/ExtraPfReco_cff.py
Revision: 1.3
Committed: Mon Oct 17 17:49:54 2011 UTC (13 years, 6 months ago) by yjlee
Content type: text/x-python
Branch: MAIN
CVS Tags: HiForest_V02_09, HiForest_V02_08, HiForest_V02_07, HiForest_V02_06, HiForest_V02_05, HiForest_V02_04, HiForest_V02_03, HiForest_V02_02, HiForest_V02_01, HiForest_V02_00, hi44X_02, hi441_1
Changes since 1.2: +1 -1 lines
Log Message:
Moved track collection back to hiSelectedTracks

File Contents

# Content
1 import FWCore.ParameterSet.Config as cms
2
3 from RecoHI.Configuration.Reconstruction_hiPF_cff import *
4
5 pfTrack.TkColList = cms.VInputTag("hiSelectedTracks")
6
7 # PF uisng a grid of pseudo-towers to emulate Russian style subtraction
8 from RecoHI.HiJetAlgos.ParticleTowerProducer_cff import *
9 # Needed to produce "HcalSeverityLevelComputerRcd" used by CaloTowersCreator/towerMakerPF
10 from RecoLocalCalo.Configuration.hcalLocalReco_cff import *
11 PFTowers = particleTowerProducer.clone()
12
13 HiParticleFlowRecoNoJets = cms.Sequence(
14 particleFlowCluster
15 * pfTrack
16 * particleFlowReco
17 * PFTowers
18 )
19
20
21