00001 import FWCore.ParameterSet.Config as cms 00002 00003 # 00004 # module to make mvaTraining for jet parton associations 00005 # 00006 trainTtSemiLepJetCombMVA = cms.EDAnalyzer("TtSemiLepJetCombMVATrainer", 00007 #------------------------------------------------- 00008 # sources 00009 #------------------------------------------------- 00010 leptons = cms.InputTag("selectedLayer1Muons"), 00011 jets = cms.InputTag("selectedLayer1Jets"), 00012 mets = cms.InputTag("selectedLayer1METs"), 00013 matching = cms.InputTag("ttSemiLepJetPartonMatch"), 00014 00015 # ------------------------------------------------ 00016 # select semileptonic signal channel 00017 # (all others are taken as background for training) 00018 # 1: electron, 2: muon, 3: tau 00019 # ------------------------------------------------ 00020 lepChannel = cms.int32(2), 00021 00022 # ------------------------------------------------ 00023 # maximum number of jets to be considered 00024 # (has to be >= 4, can be set to -1 if you 00025 # want to take all) 00026 # ------------------------------------------------ 00027 maxNJets = cms.int32(4) 00028 ) 00029 00030