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 combinedSecondaryVertexV2Computer = cms.ESProducer("CombinedSecondaryVertexESProducer",
0006 combinedSecondaryVertexCommon,
0007 useCategories = cms.bool(True),
0008 calibrationRecords = cms.vstring(
0009 'CombinedSVIVFV2RecoVertex',
0010 'CombinedSVIVFV2PseudoVertex',
0011 'CombinedSVIVFV2NoVertex'),
0012 recordLabel = cms.string(''),
0013 categoryVariableName = cms.string('vertexCategory')
0014 )