CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
combinedMVAV2Computer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 combinedMVAV2Computer = cms.ESProducer("CombinedMVAV2JetTagESProducer",
4  jetTagComputers = cms.vstring(
5  'jetProbabilityComputer',
6  'jetBProbabilityComputer',
7  'combinedSecondaryVertexV2Computer',
8  'softPFMuonComputer',
9  'softPFElectronComputer'
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(False),
17  useGBRForest = cms.bool(True),
18  useAdaBoost = cms.bool(True),
19  weightFile = cms.FileInPath('RecoBTag/Combined/data/CombinedMVAV2_13_07_2015.weights.xml.gz')
20 )