Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 10:05:26

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #
0004 # module to perform MVA training for jet-parton association
0005 #
0006 trainTtSemiLepJetCombMVA = cms.EDAnalyzer("TtSemiLepJetCombMVATrainer",
0007     #-------------------------------------------------
0008     # sources (leptons, jets, MET, jet-parton matching)
0009     #-------------------------------------------------
0010     leps     = cms.InputTag("selectedPatMuons"),
0011     jets     = cms.InputTag("selectedPatJets"),
0012     mets     = cms.InputTag("patMETs"),
0013     matching = cms.InputTag("ttSemiLepJetPartonMatch"),                                       
0014 
0015     # ------------------------------------------------
0016     # select semileptonic signal channel
0017     # (all others are taken as background for training)
0018     # either "kElec", "kMuon" or "kTau"
0019     # ------------------------------------------------
0020     leptonType = cms.string("kMuon"),
0021 
0022     # ------------------------------------------------
0023     # maximum number of jets to be considered
0024     # (has to be >= 4, can be set to -1 if you
0025     # want to take all)
0026     # ------------------------------------------------
0027     maxNJets = cms.int32(4)
0028 )
0029 
0030