CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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  ## reco photon input source
7  photonSource = cms.InputTag("photons"),
8 
9  ## Algorithm used to clean.
10  ## bySeed = using supercluster seed
11  ## bySuperCluster = using only the supercluster
12  removalAlgo = cms.string("bySeed"),
13 )