Revision: | 1.2 |
Committed: | Wed May 9 15:40:38 2012 UTC (12 years, 11 months ago) by yilmaz |
Content type: | text/x-python |
Branch: | MAIN |
CVS Tags: | 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, HiForest_V02_09, HiForest_V02_08, HiForest_V02_07, HiForest_V02_06, HiForest_V02_05, HiForest_V02_04, HiForest_V02_03, HiForest_V02_02 |
Changes since 1.1: | +14 -2 lines |
Log Message: | genjets |
# | User | Rev | Content |
---|---|---|---|
1 | frankma | 1.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 | yilmaz | 1.2 | ak1HiGenJets = ak3HiGenJets.clone(rParam = 0.1) |
13 | ak2HiGenJets = ak3HiGenJets.clone(rParam = 0.2) | ||
14 | ak6HiGenJets = ak3HiGenJets.clone(rParam = 0.6) | ||
15 | |||
16 | hiAnaGenJets = cms.Sequence(iterativeCone5HiGenJets + | ||
17 | ak1HiGenJets + | ||
18 | ak2HiGenJets + | ||
19 | ak3HiGenJets + | ||
20 | ak4HiGenJets + | ||
21 | ak5HiGenJets + | ||
22 | ak6HiGenJets | ||
23 | ) | ||
24 | |||
25 | frankma | 1.1 | |
26 | hiGen = cms.Sequence( | ||
27 | heavyIon * # GenHIEventProducer | ||
28 | hiGenParticles * | ||
29 | hiGenParticlesForJets * | ||
30 | hiAnaGenJets * | ||
31 | genPartons * | ||
32 | hiPartons | ||
33 | yilmaz | 1.2 | ) |