File indexing completed on 2024-04-06 12:24:34
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from RecoBTag.SecondaryVertex.ghostTrackCommon_cff import *
0004
0005 candidateGhostTrackComputer = cms.ESProducer("CandidateGhostTrackESProducer",
0006 ghostTrackCommon,
0007 useCategories = cms.bool(True),
0008 calibrationRecords = cms.vstring(
0009 'GhostTrackRecoVertex',
0010 'GhostTrackPseudoVertex',
0011 'GhostTrackNoVertex'),
0012 recordLabel = cms.string(''),
0013 categoryVariableName = cms.string('vertexCategory')
0014 )