00001 import FWCore.ParameterSet.Config as cms 00002 00003 # Remove duplicates from the photon list 00004 00005 photonsNoDuplicates = cms.EDFilter("DuplicatedPhotonCleaner", 00006 ## reco photon input source 00007 photonSource = cms.InputTag("photons"), 00008 00009 ## Algorithm used to clean. 00010 ## bySeed = using supercluster seed 00011 ## bySuperCluster = using only the supercluster 00012 removalAlgo = cms.string("bySeed"), 00013 )