File indexing completed on 2025-02-07 14:24:03
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def CandidateBoostedDoubleSecondaryVertexESProducer(*args, **kwargs):
0004 mod = cms.ESProducer('CandidateBoostedDoubleSecondaryVertexESProducer',
0005 useCondDB = cms.bool(False),
0006 gbrForestLabel = cms.string(''),
0007 weightFile = cms.FileInPath(''),
0008 useGBRForest = cms.bool(False),
0009 useAdaBoost = cms.bool(False),
0010 appendToDataLabel = cms.string('')
0011 )
0012 for a in args:
0013 mod.update_(a)
0014 mod.update_(kwargs)
0015 return mod