Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import FWCore.ParameterSet.Config as cms

from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
HiggsDQM = DQMEDAnalyzer('HiggsDQM',
    elecTriggerPathToPass    = cms.string("HLT_Ele10_LW_L1R"),
    muonTriggerPathToPass    = cms.string("HLT_Mu9"),
    triggerResultsCollection = cms.InputTag("TriggerResults", "", "HLT"),
    muonCollection           = cms.InputTag("muons"),
    electronCollection       = cms.InputTag("gedGsfElectrons"),
    caloJetCollection        = cms.InputTag("ak4CaloJets"),
    caloMETCollection        = cms.InputTag("caloMetM"),
    pfMETCollection          = cms.InputTag("pfMet"),
    genParticleCollection    = cms.InputTag("genParticles"),

    PtThrMu1 = cms.untracked.double(3.0),
    PtThrMu2 = cms.untracked.double(3.0)
)