CMS 3D CMS Logo

UEAnalysisRootpleOnlyMC_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 ueAnalysisRootple = cms.EDFilter("AnalysisRootpleProducerOnlyMC",
4  #label of Jet made with only charged MC particles
5  ChgGenJetCollectionName = cms.untracked.InputTag("iterativeCone5ChgGenJetsSeed10"),
6  #label of MC event
7  MCEvent = cms.untracked.InputTag("source"),
8  #label of charged MC particles
9  ChgGenPartCollectionName = cms.untracked.InputTag("chargeParticles"),
10  #label of Jet made with MC particles
11  GenJetCollectionName = cms.untracked.InputTag("iterativeCone5GenJetsSeed10")
12 )
13 
14