File indexing completed on 2024-04-06 12:24:36
0001 import FWCore.ParameterSet.Config as cms
0002
0003 softPFElectronByIP2dComputer = cms.ESProducer("LeptonTaggerByIPESProducer",
0004 use3d = cms.bool(False),
0005 ipSign = cms.string("any")
0006 )
0007
0008 negativeSoftPFElectronByIP2dComputer = cms.ESProducer("LeptonTaggerByIPESProducer",
0009 use3d = cms.bool(False),
0010 ipSign = cms.string("negative")
0011 )
0012
0013 positiveSoftPFElectronByIP2dComputer = cms.ESProducer("LeptonTaggerByIPESProducer",
0014 use3d = cms.bool(False),
0015 ipSign = cms.string("positive")
0016 )
0017
0018 softPFMuonByIP2dComputer = cms.ESProducer("LeptonTaggerByIPESProducer",
0019 use3d = cms.bool(False),
0020 ipSign = cms.string("any")
0021 )
0022
0023 negativeSoftPFMuonByIP2dComputer = cms.ESProducer("LeptonTaggerByIPESProducer",
0024 use3d = cms.bool(False),
0025 ipSign = cms.string("negative")
0026 )
0027
0028 positiveSoftPFMuonByIP2dComputer = cms.ESProducer("LeptonTaggerByIPESProducer",
0029 use3d = cms.bool(False),
0030 ipSign = cms.string("positive")
0031 )