Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:31:21

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #
0004 # module to make the mvaComputer
0005 #
0006 findTtSemiLepJetCombMVA = cms.EDProducer("TtSemiLepJetCombMVAComputer",
0007     #-------------------------------------------------
0008     # sources (leptons, jets, MET)
0009     #-------------------------------------------------
0010     leps = cms.InputTag("selectedPatMuons"),
0011     jets = cms.InputTag("selectedPatJets"),
0012     mets = cms.InputTag("patMETs"),
0013 
0014     #-------------------------------------------------
0015     # number of jets to be considered in combinatorics
0016     # (has to be >= 4, can be set to -1 if you want to 
0017     # take all)
0018     #-------------------------------------------------
0019     maxNJets = cms.int32(4),
0020 
0021     #-------------------------------------------------
0022     # maximum number of jet combinations finally
0023     # written into the event, starting from the "best"
0024     # (has to be >= 1, can be set to -1 if you want to 
0025     # take all)
0026     #-------------------------------------------------
0027     maxNComb = cms.int32(1)
0028 )