CMS 3D CMS Logo

simplePhotonAnalyzer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 # Author: N. Marinelli, U. of Notre Dame, US
5 #
6 simplePhotonAnalyzer = cms.EDAnalyzer("SimplePhotonAnalyzer",
7  phoProducer = cms.string('photons'),
8  mcProducer = cms.string('generatorSmeared'),
9  endcapEcalHits = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
10  pfEgammaCandidates = cms.InputTag("particleFlowEGamma"),
11  # 1=pt10,2=pt35,3=Hgg, 4=gamJetHighEnergy
12  sample = cms.int32(2),
13  photonCollection = cms.string(''),
14  primaryVertexProducer = cms.string('offlinePrimaryVerticesWithBS'),
15  barrelEcalHits = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
16  valueMapPhotons = cms.string("valMapAssociationPFEgammaCandidateToPhoton"),
17 )
18 
19