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 cleanPatPhotons = cms.EDProducer("PATPhotonCleaner",
0004     ## Input collection of Photons
0005     src = cms.InputTag("selectedPatPhotons"),
0006 
0007     # preselection (any string-based cut for pat::Photon)
0008     preselection = cms.string(''),
0009 
0010     # overlap checking configurables
0011     checkOverlaps = cms.PSet(
0012         electrons = cms.PSet(
0013            src       = cms.InputTag("cleanPatElectrons"),
0014            algorithm = cms.string("bySuperClusterSeed"),
0015            requireNoOverlaps = cms.bool(False), # mark photons that overlap with electrons
0016                                                 # for further studies, but DO NOT discard
0017                                                 # them
0018         ),
0019     ),
0020 
0021     # finalCut (any string-based cut for pat::Photon)
0022     finalCut = cms.string(''),
0023 
0024 )