CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/RecoEgamma/Examples/python/simplePhotonAnalyzer_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #
00004 #  Author: N. Marinelli, U. of Notre Dame, US
00005 #  $Id: simplePhotonAnalyzer_cfi.py,v 1.4 2009/11/26 19:37:36 nancy Exp $ 
00006 #
00007 SimplePhotonAnalyzer = cms.EDAnalyzer("SimplePhotonAnalyzer",
00008     phoProducer = cms.string('photons'),
00009     mcProducer = cms.string('generator'),
00010     endcapEcalHits = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
00011     # 1=pt10,2=pt35,3=Hgg, 4=gamJetHighEnergy
00012     sample = cms.int32(2),
00013     photonCollection = cms.string(''),
00014     primaryVertexProducer = cms.string('offlinePrimaryVerticesWithBS'),
00015     barrelEcalHits = cms.InputTag("ecalRecHit","EcalRecHitsEB")
00016 )
00017 
00018