File indexing completed on 2024-04-06 12:23:55
0001 import FWCore.ParameterSet.Config as cms
0002
0003 cleanPatPhotons = cms.EDProducer("PATPhotonCleaner",
0004
0005 src = cms.InputTag("selectedPatPhotons"),
0006
0007
0008 preselection = cms.string(''),
0009
0010
0011 checkOverlaps = cms.PSet(
0012 electrons = cms.PSet(
0013 src = cms.InputTag("cleanPatElectrons"),
0014 algorithm = cms.string("bySuperClusterSeed"),
0015 requireNoOverlaps = cms.bool(False),
0016
0017
0018 ),
0019 ),
0020
0021
0022 finalCut = cms.string(''),
0023
0024 )