CMS 3D CMS Logo

StEvtSolProducer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 # module to build the single top event solutions
5 # (one solution for each possible jet combination)
6 #
7 solutions = cms.EDProducer("StEvtSolutionMaker",
8  metSource = cms.InputTag("patMETs"),
9  muonSource = cms.InputTag("selectedPatMuons"),
10  electronSource = cms.InputTag("selectedPatElectrons"),
11  jetSource = cms.InputTag("selectedPatJets"),
12 
13 
14  leptonFlavour = cms.string('muon'),
15 
16 
17  jetCorrectionScheme = cms.int32(0),
18 
19 
20  matchToGenEvt = cms.bool(False),
21 
22 
23  doKinFit = cms.bool(True),
24  maxNrIter = cms.int32(200),
25  maxDeltaS = cms.double(5e-05),
26  maxF = cms.double(0.0001),
27  constraints = cms.vint32(1, 2),
28  jetParametrisation = cms.int32(0),
29  metParametrisation = cms.int32(0),
30  lepParametrisation = cms.int32(0),
31 
32 
33  addLRJetComb = cms.bool(False),
34  lrJetCombFile = cms.string('TopQuarkAnalysis/TopJetCombination/data/to_be_added.root')
35 )
36 
37