CMS 3D CMS Logo

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

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 QcdPhotonsDQM = cms.EDAnalyzer("QcdPhotonsDQM",
00004                 # Event must pass this trigger
00005                 triggerPathToPass         = cms.string("HLT_Photon"),
00006                 # Plot results of these triggers too (these don't *have* to be passed)
00007                 plotTheseTriggersToo      = cms.vstring("HLT_Photon20","HLT_Photon25","HLT_Photon30","HLT_Photon50","HLT_DoublePhoton"),
00008                 # Collections
00009                 trigTag                   = cms.untracked.InputTag("TriggerResults::HLT"),
00010                 photonCollection          = cms.InputTag("photons"),
00011                 jetCollection             = cms.InputTag("ak5PFJets"),
00012                 vertexCollection          = cms.InputTag("offlinePrimaryVertices"),
00013                 # Cuts on the reco objects
00014                 minJetPt                  = cms.double(5.0),
00015                 minPhotonEt               = cms.double(25.0),
00016                 requirePhotonFound        = cms.bool(True),
00017                 # Max Et on plots
00018                 plotPhotonMaxEt           = cms.double(200.0),
00019                 plotPhotonMaxEta          = cms.double(5.0),
00020                 plotJetMaxEta             = cms.double(5.0)
00021 )