Variables | |
tuple | cleanPatPhotons |
00001 cms.EDProducer("PATPhotonCleaner", 00002 ## Input collection of Photons 00003 src = cms.InputTag("selectedPatPhotons"), 00004 00005 # preselection (any string-based cut for pat::Photon) 00006 preselection = cms.string(''), 00007 00008 # overlap checking configurables 00009 checkOverlaps = cms.PSet( 00010 electrons = cms.PSet( 00011 src = cms.InputTag("cleanPatElectrons"), 00012 algorithm = cms.string("bySuperClusterSeed"), 00013 requireNoOverlaps = cms.bool(False), # mark photons that overlap with electrons 00014 # for further studies, but DO NOT discard 00015 # them 00016 ), 00017 ), 00018 00019 # finalCut (any string-based cut for pat::Photon) 00020 finalCut = cms.string(''), 00021 00022 )
Definition at line 3 of file photonCleaner_cfi.py.