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  ## jet input
8  jets = cms.InputTag("selectedPatJets"),
9  ## lepton input
10  leps = cms.InputTag("selectedPatMuons"),
11  ## maximum number of jets to be considered
12  maxNJets = cms.int32(4),
13  ## use deltaR or deltaTheta
14  useDeltaR = cms.bool(True),
15  ## use b-tagging two distinguish between light and b jets
16  useBTagging = cms.bool(False),
17  ## choose algorithm for b-tagging
18  bTagAlgorithm = cms.string("trackCountingHighEffBJetTags"),
19  ## minimum b discriminator value required for b jets and
20  ## maximum b discriminator value allowed for non-b jets
21  minBDiscBJets = cms.double(1.0),
22  maxBDiscLightJets = cms.double(3.0)
23 )