CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
negativeCombinedMVAComputer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 negativeCombinedMVAComputer = cms.ESProducer("CombinedMVAJetTagESProducer",
4  useCategories = cms.bool(False),
5  calibrationRecord = cms.string('CombinedMVA'),
6  recordLabel = cms.string(''),
7  jetTagComputers = cms.VPSet(
8  cms.PSet(
9  discriminator = cms.bool(True),
10  variables = cms.bool(False),
11  jetTagComputer = cms.string('negativeOnlyJetProbabilityComputer')
12  ),
13  cms.PSet(
14  discriminator = cms.bool(True),
15  variables = cms.bool(False),
16  jetTagComputer = cms.string('negativeCombinedSecondaryVertexComputer')
17  ),
18  cms.PSet(
19  discriminator = cms.bool(True),
20  variables = cms.bool(False),
21  jetTagComputer = cms.string('negativeSoftPFMuonComputer')
22  ),
23  cms.PSet(
24  discriminator = cms.bool(True),
25  variables = cms.bool(False),
26  jetTagComputer = cms.string('negativeSoftPFElectronComputer')
27  )
28  )
29 )
30