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: | HiForest_V02_01, HiForest_V02_00, 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 |
# | Content |
---|---|
1 | import FWCore.ParameterSet.Config as cms |
2 | |
3 | # Gen |
4 | from PhysicsTools.HepMCCandAlgos.HiGenParticles_cfi import * |
5 | from RecoJets.Configuration.GenJetParticles_cff import * |
6 | from RecoHI.HiJetAlgos.HiGenJets_cff import * |
7 | from RecoHI.HiJetAlgos.HiGenCleaner_cff import * |
8 | from PhysicsTools.PatAlgos.producersHeavyIons.heavyIonProducer_cfi import heavyIon |
9 | |
10 | hiGenParticles.srcVector = cms.vstring('hiSignal') |
11 | |
12 | hiAnaGenJets = cms.Sequence(iterativeCone5HiGenJets + ak5HiGenJets + ak4HiGenJets + ak3HiGenJets ) |
13 | |
14 | hiGen = cms.Sequence( |
15 | heavyIon * # GenHIEventProducer |
16 | hiGenParticles * |
17 | hiGenParticlesForJets * |
18 | hiAnaGenJets * |
19 | genPartons * |
20 | hiPartons |
21 | ) |