CMS 3D CMS Logo

SoftLeptonByPtComputers_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 softPFElectronByPtComputer = cms.ESProducer("LeptonTaggerByPtESProducer",
4  ipSign = cms.string("any")
5 )
6 
7 negativeSoftPFElectronByPtComputer = cms.ESProducer("LeptonTaggerByPtESProducer",
8  ipSign = cms.string("negative")
9 )
10 
11 positiveSoftPFElectronByPtComputer = cms.ESProducer("LeptonTaggerByPtESProducer",
12  ipSign = cms.string("positive")
13 )
14 
15 softPFMuonByPtComputer = cms.ESProducer("LeptonTaggerByPtESProducer",
16  ipSign = cms.string("any")
17 )
18 
19 negativeSoftPFMuonByPtComputer = cms.ESProducer("LeptonTaggerByPtESProducer",
20  ipSign = cms.string("negative")
21 )
22 
23 positiveSoftPFMuonByPtComputer = cms.ESProducer("LeptonTaggerByPtESProducer",
24  ipSign = cms.string("positive")
25 )