File indexing completed on 2025-01-31 02:19:51
0001 import FWCore.ParameterSet.Config as cms
0002 import RecoBTag.SecondaryVertex.candidateCombinedSecondaryVertexV2Computer_cfi as sv_cfg
0003 from RecoBTag.Combined.heavyIonCSV_trainingSettings import heavyIonCSV_vpset
0004
0005 heavyIonCSVComputer = cms.ESProducer(
0006 'HeavyIonCSVESProducer',
0007 sv_cfg = cms.PSet(
0008 **sv_cfg.candidateCombinedSecondaryVertexV2Computer.parameters_()
0009 ),
0010 weightFile = cms.FileInPath('RecoBTag/Combined/data/TMVA_Btag_CsJets_PbPb2018_BDTG.weights.xml'),
0011
0012 variables = heavyIonCSV_vpset,
0013 mvaName = cms.string('BDT'),
0014 useCondDB = cms.bool(False),
0015 gbrForestLabel = cms.string(''),
0016 useGBRForest = cms.bool(True),
0017 useAdaBoost = cms.bool(False)
0018 )
0019
0020