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