00001 import FWCore.ParameterSet.Config as cms 00002 00003 combinedMVA = cms.ESProducer("CombinedMVAJetTagESProducer", 00004 useCategories = cms.bool(False), 00005 calibrationRecord = cms.string('CombinedMVA'), 00006 jetTagComputers = cms.VPSet( 00007 cms.PSet( 00008 discriminator = cms.bool(True), 00009 variables = cms.bool(False), 00010 jetTagComputer = cms.string('jetProbability') 00011 ), 00012 cms.PSet( 00013 discriminator = cms.bool(True), 00014 variables = cms.bool(False), 00015 jetTagComputer = cms.string('combinedSecondaryVertex') 00016 ), 00017 cms.PSet( 00018 discriminator = cms.bool(True), 00019 variables = cms.bool(False), 00020 jetTagComputer = cms.string('softMuon') 00021 ), 00022 cms.PSet( 00023 discriminator = cms.bool(True), 00024 variables = cms.bool(False), 00025 jetTagComputer = cms.string('softElectron') 00026 ) 00027 ) 00028 )