CMS 3D CMS Logo

TtSemiLepJetCombMVAComputer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 # module to make the mvaComputer
5 #
6 findTtSemiLepJetCombMVA = cms.EDProducer("TtSemiLepJetCombMVAComputer",
7  #-------------------------------------------------
8  # sources (leptons, jets, MET)
9  #-------------------------------------------------
10  leps = cms.InputTag("selectedPatMuons"),
11  jets = cms.InputTag("selectedPatJets"),
12  mets = cms.InputTag("patMETs"),
13 
14  #-------------------------------------------------
15  # number of jets to be considered in combinatorics
16  # (has to be >= 4, can be set to -1 if you want to
17  # take all)
18  #-------------------------------------------------
19  maxNJets = cms.int32(4),
20 
21  #-------------------------------------------------
22  # maximum number of jet combinations finally
23  # written into the event, starting from the "best"
24  # (has to be >= 1, can be set to -1 if you want to
25  # take all)
26  #-------------------------------------------------
27  maxNComb = cms.int32(1)
28 )