CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
candidatePositiveCombinedMVAV2Computer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 candidatePositiveCombinedMVAV2Computer = cms.ESProducer("CombinedMVAV2JetTagESProducer",
4  jetTagComputers = cms.vstring(
5  'candidatePositiveOnlyJetProbabilityComputer',
6  'candidatePositiveOnlyJetBProbabilityComputer',
7  'candidatePositiveCombinedSecondaryVertexV2Computer',
8  'negativeSoftPFMuonComputer',
9  'negativeSoftPFElectronComputer'
10  ),
11  mvaName = cms.string("bdt"),
12  variables = cms.vstring(
13  ["Jet_CSV", "Jet_CSVIVF", "Jet_JP", "Jet_JBP", "Jet_SoftMu", "Jet_SoftEl"]
14  ),
15  spectators = cms.vstring([]),
16  useCondDB = cms.bool(True),
17  gbrForestLabel = cms.string("btag_CombinedMVAv2_BDT"),
18  useGBRForest = cms.bool(True),
19  useAdaBoost = cms.bool(False),
20  weightFile = cms.FileInPath('RecoBTag/Combined/data/CombinedMVAV2_13_07_2015.weights.xml.gz')
21 )