CMS 3D CMS Logo

TtSemiLepJetCombGeom_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 # module to make the geom jet combination
5 #
6 findTtSemiLepJetCombGeom = cms.EDProducer("TtSemiLepJetCombGeom",
7 
8  jets = cms.InputTag("selectedPatJets"),
9 
10  leps = cms.InputTag("selectedPatMuons"),
11 
12  maxNJets = cms.int32(4),
13 
14  useDeltaR = cms.bool(True),
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 )