Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 cleanPatPhotons = cms.EDProducer("PATPhotonCleaner",
00004
00005 src = cms.InputTag("selectedPatPhotons"),
00006
00007
00008 preselection = cms.string(''),
00009
00010
00011 checkOverlaps = cms.PSet(
00012 electrons = cms.PSet(
00013 src = cms.InputTag("cleanPatElectrons"),
00014 algorithm = cms.string("bySuperClusterSeed"),
00015 requireNoOverlaps = cms.bool(False),
00016
00017
00018 ),
00019 ),
00020
00021
00022 finalCut = cms.string(''),
00023
00024 )