Variables | |
tuple | cleanPatElectrons |
00001 cms.EDProducer("PATElectronCleaner", 00002 ## pat electron input source 00003 src = cms.InputTag("selectedPatElectrons"), 00004 00005 # preselection (any string-based cut for pat::Electron) 00006 preselection = cms.string(''), 00007 00008 # overlap checking configurables 00009 checkOverlaps = cms.PSet( 00010 muons = cms.PSet( 00011 src = cms.InputTag("cleanPatMuons"), 00012 algorithm = cms.string("byDeltaR"), 00013 preselection = cms.string(""), # don't preselect the muons 00014 deltaR = cms.double(0.3), 00015 checkRecoComponents = cms.bool(False), # don't check if they share some AOD object ref 00016 pairCut = cms.string(""), 00017 requireNoOverlaps = cms.bool(False), # overlaps don't cause the electron to be discared 00018 ) 00019 ), 00020 00021 # finalCut (any string-based cut for pat::Electron) 00022 finalCut = cms.string(''), 00023 )
Definition at line 3 of file electronCleaner_cfi.py.