Go to the documentation of this file.00001
00002 import FWCore.ParameterSet.Config as cms
00003
00004 from PhysicsTools.JetMCAlgos.SelectPartons_cff import myPartons
00005 genPartons = myPartons.clone(
00006 src = cms.InputTag("hiGenParticles")
00007 )
00008
00009 hiPartons = cms.EDProducer('HiPartonCleaner',
00010 src = cms.InputTag('genPartons'),
00011 deltaR = cms.double(0.25),
00012 ptCut = cms.double(20),
00013 createNewCollection = cms.untracked.bool(True),
00014 fillDummyEntries = cms.untracked.bool(True)
00015 )
00016
00017 heavyIonCleanedGenJets = cms.EDProducer('HiGenJetCleaner',
00018 src = cms.InputTag('iterativeCone5HiGenJets'),
00019 deltaR = cms.double(0.25),
00020 ptCut = cms.double(20),
00021 createNewCollection = cms.untracked.bool(True),
00022 fillDummyEntries = cms.untracked.bool(True)
00023 )
00024
00025 heavyIonCleaned = cms.Sequence(genPartons*hiPartons+heavyIonCleanedGenJets)
00026
00027
00028
00029