File indexing completed on 2024-04-06 12:24:34
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from RecoBTag.SecondaryVertex.combinedSecondaryVertexCommon_cff import *
0004
0005 candidateCombinedSecondaryVertexSoftLeptonComputer = cms.ESProducer("CandidateCombinedSecondaryVertexSoftLeptonESProducer",
0006 combinedSecondaryVertexCommon,
0007 useCategories = cms.bool(True),
0008 calibrationRecords = cms.vstring(
0009 'CombinedSVRecoVertexNoSoftLepton',
0010 'CombinedSVPseudoVertexNoSoftLepton',
0011 'CombinedSVNoVertexNoSoftLepton',
0012 'CombinedSVRecoVertexSoftMuon',
0013 'CombinedSVPseudoVertexSoftMuon',
0014 'CombinedSVNoVertexSoftMuon',
0015 'CombinedSVRecoVertexSoftElectron',
0016 'CombinedSVPseudoVertexSoftElectron',
0017 'CombinedSVNoVertexSoftElectron'),
0018 recordLabel = cms.string(''),
0019 categoryVariableName = cms.string('vertexLeptonCategory')
0020 )
0021