Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:23:56

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # module to filter on the number of Leptons
0004 countPatLeptons = cms.EDFilter("PATLeptonCountFilter",
0005     electronSource = cms.InputTag("cleanPatElectrons"),
0006     muonSource     = cms.InputTag("cleanPatMuons"),
0007     tauSource      = cms.InputTag("cleanPatTaus"),
0008     countElectrons = cms.bool(True),
0009     countMuons     = cms.bool(True),
0010     countTaus      = cms.bool(False),
0011     minNumber = cms.uint32(0),
0012     maxNumber = cms.uint32(999999),
0013 )
0014 
0015