Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:26:12

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #
0004 # module to make the WMassMaxSumPt jet combination
0005 #
0006 findTtSemiLepJetCombWMassMaxSumPt = cms.EDProducer("TtSemiLepJetCombWMassMaxSumPt",
0007     ## jet input 
0008     jets  = cms.InputTag("selectedPatJets"),
0009     ## lepton input 
0010     leps  = cms.InputTag("selectedPatMuons"),
0011     ## maximum number of jets to be considered
0012     maxNJets  = cms.int32(4),
0013     ## nominal WMass parameter (in GeV)
0014     wMass    = cms.double(80.4),
0015     ## use b-tagging two distinguish between light and b jets
0016     useBTagging = cms.bool(False),
0017     ## choose algorithm for b-tagging
0018     bTagAlgorithm = cms.string("trackCountingHighEffBJetTags"),
0019     ## minimum b discriminator value required for b jets and
0020     ## maximum b discriminator value allowed for non-b jets
0021     minBDiscBJets     = cms.double(1.0),
0022     maxBDiscLightJets = cms.double(3.0)
0023 )