CMS 3D CMS Logo

qcdPhotonsDQM_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
4 qcdPhotonsDQM = DQMEDAnalyzer('QcdPhotonsDQM',
5  # Event must pass this trigger
6  triggerPathToPass = cms.string("HLT_Photon"),
7  # Plot results of these triggers too (these don't *have* to be passed)
8  plotTheseTriggersToo = cms.vstring("HLT_Photon20","HLT_Photon25","HLT_Photon30","HLT_Photon50","HLT_DoublePhoton"),
9  # Collections
10  trigTag = cms.untracked.InputTag("TriggerResults::HLT"),
11  photonCollection = cms.InputTag("gedPhotons"),
12  jetCollection = cms.InputTag("ak4PFJets"),
13  vertexCollection = cms.InputTag("offlinePrimaryVertices"),
14  # Cuts on the reco objects
15  minJetPt = cms.double(5.0),
16  minPhotonEt = cms.double(25.0),
17  requirePhotonFound = cms.bool(True),
18  # Max Et on plots
19  plotPhotonMaxEt = cms.double(200.0),
20  plotPhotonMaxEta = cms.double(5.0),
21  plotJetMaxEta = cms.double(5.0),
22  barrelRecHitTag = cms.InputTag("reducedEcalRecHitsEB"),
23  endcapRecHitTag = cms.InputTag("reducedEcalRecHitsEE")
24 )