Revision: | 1.2 |
Committed: | Wed Jul 13 15:10:11 2011 UTC (13 years, 9 months ago) by frankma |
Content type: | text/x-python |
Branch: | MAIN |
CVS Tags: | 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 |
Changes since 1.1: | +9 -6 lines |
Log Message: | update to 41X |
# | Content |
---|---|
1 | import FWCore.ParameterSet.Config as cms |
2 | |
3 | from RecoHI.Configuration.Reconstruction_hiPF_cff import * |
4 | |
5 | pfTrack.TkColList = cms.VInputTag("hiGoodTightTracks") |
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 |