1
2
3
4
5
6
7
8
9
10
11
|
import FWCore.ParameterSet.Config as cms
pfEGammaToCandidateRemapper = cms.EDProducer("PFEGammaToCandidateRemapper",
electrons = cms.InputTag("gedGsfElectrons"),
photons = cms.InputTag("gedPhotons"),
electron2pf = cms.InputTag("particleBasedIsolation","gedGsfElectrons"),
photon2pf = cms.InputTag("particleBasedIsolation","gedPhotons"),
pf2pf = cms.InputTag("FILLME")
)
pfEGammaToCandidateRemapperCleaned = pfEGammaToCandidateRemapper.clone(pf2pf = "cleanedParticleFlow")
|