CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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  ## lepton flavor
14  leptonFlavour = cms.string('muon'),
15 
16  ## choose jet correction scheme
17  jetCorrectionScheme = cms.int32(0),
18 
19  ## match to gen event?
20  matchToGenEvt = cms.bool(False),
21 
22  ## configuration of kinemtaic fit
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  ## configuration of private LH ratio method
33  addLRJetComb = cms.bool(False),
34  lrJetCombFile = cms.string('TopQuarkAnalysis/TopJetCombination/data/to_be_added.root')
35 )
36 
37