File indexing completed on 2024-04-06 12:27:30
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004 from RecoEgamma.PhotonIdentification.isolationCalculator_cfi import *
0005
0006 pfPhotonTranslator = cms.EDProducer("PFPhotonTranslator",
0007
0008 PFCandidate = cms.InputTag("pfSelectedPhotons"),
0009 PFBasicClusters = cms.string("pfphot"),
0010 PFPreshowerClusters = cms.string("pfphot"),
0011 PFSuperClusters = cms.string("pfphot"),
0012 PFConversionCollection = cms.string("pfphot"),
0013 PFPhotonCores = cms.string("pfphot"),
0014 PFPhotons = cms.string("pfphot"),
0015 EGPhotons = cms.string("photons"),
0016
0017 primaryVertexProducer = cms.string("offlinePrimaryVerticesWithBS"),
0018 isolationValues = cms.PSet(
0019 pfChargedHadrons = cms.InputTag('phPFIsoValueCharged04PFId'),
0020 pfPhotons = cms.InputTag('phPFIsoValueGamma04PFId'),
0021 pfNeutralHadrons= cms.InputTag('phPFIsoValueNeutral04PFId')
0022 ),
0023 barrelEcalHits = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
0024 endcapEcalHits = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
0025 hcalTowers = cms.InputTag("towerMaker"),
0026 hOverEConeSize = cms.double(0.15)
0027 )