Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:23:55

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # Remove duplicates from the photon list
0004 
0005 photonsNoDuplicates = cms.EDFilter("DuplicatedPhotonCleaner",
0006     ## reco photon input source
0007     photonSource = cms.InputTag("photons"), 
0008 
0009     ## Algorithm used to clean.
0010     ##   bySeed         = using supercluster seed
0011     ##   bySuperCluster = using only the supercluster
0012     removalAlgo  = cms.string("bySeed"),
0013 )