Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:24:24

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from RecoBTag.SecondaryVertex.combinedSecondaryVertexCommon_cff import *
0004 
0005 candidateCombinedSecondaryVertexSoftLeptonCvsLComputer = cms.ESProducer(
0006    "CandidateCombinedSecondaryVertexSoftLeptonCvsLESProducer",
0007    combinedSecondaryVertexCommon,
0008    useCategories = cms.bool(True),
0009    calibrationRecords = cms.vstring(
0010       'CombinedSVRecoVertexNoSoftLeptonCvsL', 
0011       'CombinedSVPseudoVertexNoSoftLeptonCvsL', 
0012       'CombinedSVNoVertexNoSoftLeptonCvsL',
0013       'CombinedSVRecoVertexSoftMuonCvsL', 
0014       'CombinedSVPseudoVertexSoftMuonCvsL', 
0015       'CombinedSVNoVertexSoftMuonCvsL',
0016       'CombinedSVRecoVertexSoftElectronCvsL', 
0017       'CombinedSVPseudoVertexSoftElectronCvsL', 
0018       'CombinedSVNoVertexSoftElectronCvsL'),
0019    recordLabel = cms.string(''),
0020    categoryVariableName = cms.string('vertexLeptonCategory')
0021 )