CMS 3D CMS Logo

duplicatedPhotons_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Remove duplicates from the photon list
4 
5 photonsNoDuplicates = cms.EDFilter("DuplicatedPhotonCleaner",
6 
7  photonSource = cms.InputTag("photons"),
8 
9 
12  removalAlgo = cms.string("bySeed"),
13 )