CMS 3D CMS Logo

TtSemiLepJetCombMaxSumPtWMass_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 # module to make the MaxSumPtWMass jet combination
5 #
6 findTtSemiLepJetCombMaxSumPtWMass = cms.EDProducer("TtSemiLepJetCombMaxSumPtWMass",
7 
8  jets = cms.InputTag("selectedPatJets"),
9 
10  leps = cms.InputTag("selectedPatMuons"),
11 
12  maxNJets = cms.int32(4),
13 
14  wMass = cms.double(80.4),
15 
16  useBTagging = cms.bool(False),
17 
18  bTagAlgorithm = cms.string("trackCountingHighEffBJetTags"),
19 
21  minBDiscBJets = cms.double(1.0),
22  maxBDiscLightJets = cms.double(3.0)
23 )