CMS 3D CMS Logo

heavyIonCSVComputer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
3 from RecoBTag.Combined.heavyIonCSV_trainingSettings import heavyIonCSV_vpset
4 
5 heavyIonCSVComputer = cms.ESProducer(
6  'HeavyIonCSVESProducer',
7  sv_cfg = cms.PSet(
8  **sv_cfg.candidateCombinedSecondaryVertexV2Computer.parameters_()
9  ),
10  weightFile = cms.FileInPath('RecoBTag/Combined/data/TMVA_Btag_CsJets_PbPb2018_BDTG.weights.xml'),
11 
12  variables = heavyIonCSV_vpset,
13  tagInfos = cms.VInputTag(
14  cms.InputTag('impactParameterTagInfos'),
15  cms.InputTag('secondaryVertexFinderTagInfos'),
16  ),
17  mvaName = cms.string('BDT'),
18  useCondDB = cms.bool(False),
19  gbrForestLabel = cms.string(''),
20  useGBRForest = cms.bool(True),
21  useAdaBoost = cms.bool(False)
22  )
23 
24