Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004
00005
00006 from PhysicsTools.HepMCCandAlgos.genParticles_cfi import *
00007 from RecoJets.Configuration.RecoGenJets_cff import *
00008 from RecoMET.Configuration.RecoGenMET_cff import *
00009 from RecoJets.Configuration.GenJetParticles_cff import *
00010 from RecoMET.Configuration.GenMETParticles_cff import *
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048 VertexSmearing = cms.Sequence(cms.SequencePlaceholder("VtxSmeared"))
00049 GeneInfo = cms.Sequence(genParticles)
00050 genJetMET = cms.Sequence(genJetParticles*recoGenJets+genMETParticles*recoGenMET)
00051 pgen = cms.Sequence(cms.SequencePlaceholder("randomEngineStateProducer")+VertexSmearing+GeneInfo+genJetMET)
00052
00053
00054
00055 pgen_genonly = cms.Sequence(cms.SequencePlaceholder("randomEngineStateProducer"))
00056
00057
00058
00059
00060
00061 hiGenJets = cms.Sequence(hiGenParticlesForJets*hiRecoGenJets)
00062
00063 from PhysicsTools.HepMCCandAlgos.HiGenParticles_cfi import *
00064
00065 pgen_hi = cms.Sequence(cms.SequencePlaceholder("randomEngineStateProducer")+VertexSmearing+hiGenParticles+hiGenJets)
00066
00067 from SimGeneral.MixingModule.MatchVtx_cfi import *
00068
00069 pgen_himix = cms.Sequence(cms.SequencePlaceholder("randomEngineStateProducer")+matchVtx+hiGenParticles+hiGenJets)
00070
00071 fixGenInfo = cms.Sequence(GeneInfo * genJetMET)
00072
00073
00074 import HLTrigger.HLTfilters.triggerResultsFilter_cfi
00075 genstepfilter = HLTrigger.HLTfilters.triggerResultsFilter_cfi.triggerResultsFilter.clone(
00076 l1tResults = cms.InputTag(''),
00077 hltResults = cms.InputTag('TriggerResults'),
00078 triggerConditions = cms.vstring()
00079 )