CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
qcdPhotonsDQM_cfi.py
Go to the documentation of this file.
2 
3 qcdPhotonsDQM = cms.EDAnalyzer("QcdPhotonsDQM",
4  # Event must pass this trigger
5  triggerPathToPass = cms.string("HLT_Photon"),
6  # Plot results of these triggers too (these don't *have* to be passed)
7  plotTheseTriggersToo = cms.vstring("HLT_Photon20","HLT_Photon25","HLT_Photon30","HLT_Photon50","HLT_DoublePhoton"),
8  # Collections
9  trigTag = cms.untracked.InputTag("TriggerResults::HLT"),
10  photonCollection = cms.InputTag("gedPhotons"),
11  jetCollection = cms.InputTag("ak5PFJets"),
12  vertexCollection = cms.InputTag("offlinePrimaryVertices"),
13  # Cuts on the reco objects
14  minJetPt = cms.double(5.0),
15  minPhotonEt = cms.double(25.0),
16  requirePhotonFound = cms.bool(True),
17  # Max Et on plots
18  plotPhotonMaxEt = cms.double(200.0),
19  plotPhotonMaxEta = cms.double(5.0),
20  plotJetMaxEta = cms.double(5.0),
21  barrelRecHitTag = cms.InputTag("reducedEcalRecHitsEB"),
22  endcapRecHitTag = cms.InputTag("reducedEcalRecHitsEE")
23 )