Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 QcdPhotonsDQM = cms.EDAnalyzer("QcdPhotonsDQM",
00004
00005 triggerPathToPass = cms.string("HLT_Photon"),
00006
00007 plotTheseTriggersToo = cms.vstring("HLT_Photon20","HLT_Photon25","HLT_Photon30","HLT_Photon50","HLT_DoublePhoton"),
00008
00009 trigTag = cms.untracked.InputTag("TriggerResults::HLT"),
00010 photonCollection = cms.InputTag("photons"),
00011 jetCollection = cms.InputTag("ak5PFJets"),
00012 vertexCollection = cms.InputTag("offlinePrimaryVertices"),
00013
00014 minJetPt = cms.double(5.0),
00015 minPhotonEt = cms.double(25.0),
00016 requirePhotonFound = cms.bool(True),
00017
00018 plotPhotonMaxEt = cms.double(200.0),
00019 plotPhotonMaxEta = cms.double(5.0),
00020 plotJetMaxEta = cms.double(5.0)
00021 )