CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/DQM/Physics/python/ewkDQM_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # DQM monitor module for EWK
00004 EwkDQM = cms.EDAnalyzer("EwkDQM",
00005 
00006             elecTriggerPathToPass    = cms.vstring("HLT_Ele", "HLT_DoubleEle", "HLT_DoublePhoton"),
00007             muonTriggerPathToPass    = cms.vstring("HLT_Mu", "HLT_IsoMu", "HLT_DoubleMu"),
00008             triggerResultsCollection = cms.InputTag("TriggerResults", "", "HLT"),
00009 
00010             muonCollection           = cms.InputTag("muons"),
00011             electronCollection       = cms.InputTag("gsfElectrons"),
00012             PFJetCollection          = cms.InputTag("ak5PFJets"),
00013             caloMETCollection        = cms.InputTag("corMetGlobalMuons"),
00014             #genParticleCollection    = cms.InputTag("genParticles")
00015             EJetMin = cms.untracked.double(15.0)
00016 )