CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_7_hltpatch2/src/Validation/EventGenerator/python/MBUEandQCDValidation_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from Validation.EventGenerator.MBUEandQCDValidation_cfi import *
00004 from RecoJets.Configuration.GenJetParticles_cff import *
00005 from RecoJets.Configuration.RecoGenJets_cff import *
00006 
00007 chargedParticles = cms.EDFilter("GenParticleSelector",
00008     filter = cms.bool(False),
00009     src    = cms.InputTag("genParticles"),
00010     cut    = cms.string('charge != 0 & pt > 0.05 & status = 1 & eta < 2.5 & eta > -2.5')
00011 )
00012 
00013 chargedak5GenJets = ak5GenJets.clone( src = cms.InputTag("chargedParticles") )
00014 
00015 mbueAndqcd_seq = cms.Sequence(chargedParticles*chargedak5GenJets*mbueAndqcdValidation)