ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/CmsHi/JetAnalysis/python/ExtraPfReco_cff.py
Revision: 1.4
Committed: Fri May 25 11:14:32 2012 UTC (12 years, 11 months ago) by yilmaz
Content type: text/x-python
Branch: MAIN
CVS Tags: HiForest_V02_26, QM_2012, HiForest_V02_25, HiForest_V02_24, HiForest_V02_23, HiForest_V02_22, HiForest_V02_21, HiForest_V02_20, HiForest_V02_19, HiForest_V02_18, HiForest_V02_17, HiForest_V02_16, HiForest_V02_15, HiForest_V02_14, HiForest_V02_13, HiForest_V02_12, HiForest_V02_11, HiForest_V02_10
Branch point for: branch_44x
Changes since 1.3: +15 -0 lines
Log Message:
clean up

File Contents

# User Rev Content
1 frankma 1.1 import FWCore.ParameterSet.Config as cms
2    
3     from RecoHI.Configuration.Reconstruction_hiPF_cff import *
4    
5 yjlee 1.3 pfTrack.TkColList = cms.VInputTag("hiSelectedTracks")
6 frankma 1.1
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 yilmaz 1.4 particleFlowTmp.postMuonCleaning = False
14     particleFlowClusterPS.thresh_Pt_Seed_Endcap = cms.double(99999.)
15    
16    
17     particleFlowBlock.RecMuons = 'muons'
18     particleFlowTmp.postMuonCleaning = False
19     pfTrack.UseQuality = True
20     pfTrack.GsfTracksInEvents = cms.bool(False)
21     HiParticleFlowReco.remove(electronsWithPresel)
22     HiParticleFlowReco.remove(electronsCiCLoose)
23     particleFlowTmp.usePFElectrons = cms.bool(False)
24     particleFlowTmp.useEGammaElectrons = cms.bool(False)
25    
26    
27    
28 frankma 1.1 HiParticleFlowRecoNoJets = cms.Sequence(
29 frankma 1.2 particleFlowCluster
30     * pfTrack
31     * particleFlowReco
32     * PFTowers
33     )
34    
35    
36