Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:33:15

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # genParticles
0004 genParticles1 = cms.EDProducer("GenParticlePruner",
0005                                src = cms.InputTag("genParticles"),
0006                                select = cms.vstring('drop *',
0007                                # for miniAOD matching
0008                                'keep status == 1')
0009 )
0010 
0011 from DQMOffline.PFTau.PFElectronDQMAnalyzer_cfi import pfElectronDQMAnalyzer
0012 
0013 genParticlesValidation = pfElectronDQMAnalyzer.clone(
0014     BenchmarkLabel  = 'packedGenParticlesValidation/CompWithGenParticles',
0015     InputCollection = 'packedGenParticles',
0016     MatchCollection = 'genParticles1'
0017 )
0018 
0019 miniAODValidationSequence = cms.Sequence(
0020     genParticlesValidation
0021 )