CMS 3D CMS Logo

All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TtSemiLepJetCombGeom_cfi.py
Go to the documentation of this file.
2 
3 #
4 # module to make the geom hypothesis
5 #
6 findTtSemiLepJetCombGeom = cms.EDProducer("TtSemiLepJetCombGeom",
7  ## jet input
8  jets = cms.InputTag("selectedPatJets"),
9  ## lepton input
10  leps = cms.InputTag("selectedPatMuons"),
11  maxNJets = cms.int32(4),
12  ## use deltaR or deltaTheta
13  useDeltaR = cms.bool(True),
14  ## use b-tagging two distinguish between light and b jets
15  useBTagging = cms.bool(False),
16  ## choose algorithm for b-tagging
17  bTagAlgorithm = cms.string("trackCountingHighEffBJetTags"),
18  ## minimum b discriminator value required for b jets and
19  ## maximum b discriminator value allowed for non-b jets
20  minBDiscBJets = cms.double(1.0),
21  maxBDiscLightJets = cms.double(3.0)
22 )