CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/RecoParticleFlow/PFProducer/python/pfPhotonTranslator_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #from RecoParticleFlow.PFProducer.pfPhotonTranslatorMVACut_cfi import *
00004 from RecoEgamma.PhotonIdentification.isolationCalculator_cfi import *
00005 
00006 PFPhotonTranslator = cms.EDProducer("PFPhotonTranslator",
00007                                     #PFCandidate = cms.InputTag("particleFlow"),
00008                                     PFCandidate = cms.InputTag("pfSelectedPhotons"),
00009                                     PFBasicClusters = cms.string("pfphot"),
00010                                     PFPreshowerClusters = cms.string("pfphot"),
00011                                     PFSuperClusters = cms.string("pfphot"),
00012                                     PFConversionCollection = cms.string("pfphot"),
00013                                     PFPhotonCores = cms.string("pfphot"),
00014                                     PFPhotons = cms.string("pfphot"),
00015                                     EGPhotons = cms.string("photons"),
00016                                   
00017                                     primaryVertexProducer = cms.string("offlinePrimaryVerticesWithBS"),
00018                                     isolationValues = cms.PSet(
00019                                       pfChargedHadrons = cms.InputTag('phPFIsoValueCharged04PFId'),
00020                                       pfPhotons = cms.InputTag('phPFIsoValueGamma04PFId'),
00021                                       pfNeutralHadrons= cms.InputTag('phPFIsoValueNeutral04PFId')
00022                                       ),
00023                                     barrelEcalHits = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
00024                                     endcapEcalHits = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
00025                                     hcalTowers = cms.InputTag("towerMaker"),       
00026                                     hOverEConeSize = cms.double(0.15)
00027                                     )