CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/TopQuarkAnalysis/TopJetCombination/python/TtSemiLepJetCombGeom_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #
00004 # module to make the geom hypothesis
00005 #
00006 findTtSemiLepJetCombGeom = cms.EDProducer("TtSemiLepJetCombGeom",
00007     ## jet input 
00008     jets  = cms.InputTag("selectedPatJets"),
00009     ## lepton input 
00010     leps  = cms.InputTag("selectedPatMuons"),
00011     maxNJets  = cms.int32(4),
00012     ## use deltaR or deltaTheta
00013     useDeltaR = cms.bool(True),
00014     ## use b-tagging two distinguish between light and b jets
00015     useBTagging = cms.bool(False),
00016     ## choose algorithm for b-tagging
00017     bTagAlgorithm = cms.string("trackCountingHighEffBJetTags"),
00018     ## minimum b discriminator value required for b jets and
00019     ## maximum b discriminator value allowed for non-b jets
00020     minBDiscBJets     = cms.double(1.0),
00021     maxBDiscLightJets = cms.double(3.0)
00022 )