CMS 3D CMS Logo

TtSemiLepJetCombWMassDeltaTopMass_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 # module to make the WMassDeltaTopMass jet combination
5 #
6 findTtSemiLepJetCombWMassDeltaTopMass = cms.EDProducer("TtSemiLepJetCombWMassDeltaTopMass",
7 
8  jets = cms.InputTag("selectedPatJets"),
9 
10  leps = cms.InputTag("selectedPatMuons"),
11 
12  mets = cms.InputTag("patMETs"),
13  maxNJets = cms.int32(4),
14 
15  wMass = cms.double(80.4),
16 
17  useBTagging = cms.bool(False),
18 
19  bTagAlgorithm = cms.string("trackCountingHighEffBJetTags"),
20 
22  minBDiscBJets = cms.double(1.0),
23  maxBDiscLightJets = cms.double(3.0),
24 
34  neutrinoSolutionType = cms.int32(-1)
35 )