CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/PhysicsTools/PatAlgos/python/recoLayer0/duplicatedPhotons_cfi.py

Go to the documentation of this file.
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 )