00001 import FWCore.ParameterSet.Config as cms 00002 00003 topDiLepton2ElectronFilter = cms.EDFilter("TopDiLeptonFilter", 00004 electronCollection = cms.InputTag("pixelMatchGsfElectrons"), 00005 muonCollection = cms.InputTag("muons"), 00006 ptThreshold = cms.double(20.0) 00007 ) 00008 00009 topDiLepton2Electron = cms.Sequence(topDiLepton2ElectronFilter) 00010