test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TtSemiLepJetCombWMassMaxSumPt_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 # module to make the WMassMaxSumPt jet combination
5 #
6 findTtSemiLepJetCombWMassMaxSumPt = cms.EDProducer("TtSemiLepJetCombWMassMaxSumPt",
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  ## nominal WMass parameter (in GeV)
14  wMass = cms.double(80.4),
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 )