Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:38

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 electronFilter = cms.EDFilter("EtaPtMinGsfElectronFullCloneSelector",
0004     filter = cms.bool(True),
0005     src = cms.InputTag("gedGsfElectrons"),
0006     etaMin = cms.double(-2.5),
0007     etaMax = cms.double(2.5),
0008     ptMin = cms.double(15.0)
0009 )
0010 
0011