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