00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 from PhysicsTools.HepMCCandAlgos.genParticleCandidatesFast_cfi import *
00014 from SimGeneral.HepPDTESSource.pythiapdt_cfi import *
00015 from RecoJets.Configuration.GenJetParticles_cff import *
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 genCandidatesForMET = cms.EDProducer(
00031 "InputGenJetsParticleSelector",
00032 src = cms.InputTag("genParticles"),
00033 partonicFinalState = cms.bool(False),
00034 excludeResonances = cms.bool(False),
00035 excludeFromResonancePids = cms.vuint32(),
00036 tausAsJets = cms.bool(False),
00037 ignoreParticleIDs = cms.vuint32(
00038 1000022, 2000012, 2000014,
00039 2000016, 1000039, 5000039,
00040 4000012, 9900012, 9900014,
00041 9900016, 39, 12, 13, 14, 16)
00042 )
00043
00044 genMETParticles = cms.Sequence(genCandidatesForMET)
00045