File indexing completed on 2023-03-17 11:17:00
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 tagInfos = cms.VInputTag(
0014 cms.InputTag('impactParameterTagInfos'),
0015 cms.InputTag('secondaryVertexFinderTagInfos'),
0016 ),
0017 mvaName = cms.string('BDT'),
0018 useCondDB = cms.bool(False),
0019 gbrForestLabel = cms.string(''),
0020 useGBRForest = cms.bool(True),
0021 useAdaBoost = cms.bool(False)
0022 )
0023
0024