00001 import FWCore.ParameterSet.Config as cms 00002 00003 # 00004 # Author: N. Marinelli, U. of Notre Dame, US 00005 # 00006 PhotonsWithConversionsAnalyzer = cms.EDAnalyzer("PhotonsWithConversionsAnalyzer", 00007 phoProducer = cms.string('correctedPhotons'), 00008 HistOutFile = cms.untracked.string('analyzer.root'), 00009 moduleLabelMC = cms.untracked.string('source'), 00010 moduleLabelTk = cms.untracked.string('g4SimHits'), 00011 photonCollection = cms.string('correctedPhotonsWithConversions'), 00012 moduleLabelHit = cms.untracked.string('g4SimHits'), 00013 moduleLabelVtx = cms.untracked.string('g4SimHits') 00014 ) 00015 00016