Revision: | 1.5 |
Committed: | Wed Sep 12 15:27:01 2012 UTC (12 years, 7 months ago) by yilmaz |
Content type: | text/x-python |
Branch: | MAIN |
CVS Tags: | HiForest_V02_85, HiForest_V02_84, HiForest_V02_83, HiForest_V02_82, HiForest_V02_81, HiForest_V02_80, HiForest_V02_79, HiForest_V02_78, HiForest_V02_77, HiForest_V02_76, HiForest_V02_75, HiForest_V02_74, HiForest_V02_73, HiForest_V02_72, HiForest_V02_71, HiForest_V02_70, HiForest_V02_69, HiForest_V02_68, HiForest_V02_67, HiForest_V02_66, HiForest_V02_65, HiForest_V02_64, HiForest_V02_63, HiForest_V02_62, HiForest_V02_61, HiForest_V02_60, HiForest_V02_59, HiForest_V02_58, HiForest_V02_57, HiForest_V02_56, HiForest_V02_55, HiForest_V02_54, HiForest_V02_53, HiForest_V02_52, HiForest_V02_51, HiForest_V02_50, HiForest_V02_49, HiForest_V02_48, HiForest_V02_47, HiForest_V02_46, HiForest_V02_45, HiForest_V02_44, HiForest_V02_43, HiForest_V02_42, HiForest_V02_41, HiForest_V02_40, HiForest_V02_39, HiForest_V02_38, HiForest_V02_37, HiForest_V02_36, HiForest_V02_35, HiForest_V02_34, HiForest_V02_33, HiForest_V02_32, HiForest_V02_31, HiForest_V02_30, HiForest_V02_27, HEAD |
Changes since 1.4: | +4 -1 lines |
Log Message: | update |
# | 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 | 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 | |
24 | HiParticleFlowReco.remove(mvaElectrons) |
25 | |
26 | particleFlowTmp.usePFElectrons = cms.bool(False) |
27 | particleFlowTmp.useEGammaElectrons = cms.bool(False) |
28 | |
29 | |
30 | |
31 | HiParticleFlowRecoNoJets = cms.Sequence( |
32 | particleFlowCluster |
33 | * pfTrack |
34 | * particleFlowReco |
35 | * PFTowers |
36 | ) |
37 | |
38 | |
39 |