Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004
00005
00006
00007 solutions = cms.EDProducer("StEvtSolutionMaker",
00008 metSource = cms.InputTag("patMETs"),
00009 muonSource = cms.InputTag("selectedPatMuons"),
00010 electronSource = cms.InputTag("selectedPatElectrons"),
00011 jetSource = cms.InputTag("selectedPatJets"),
00012
00013
00014 leptonFlavour = cms.string('muon'),
00015
00016
00017 jetCorrectionScheme = cms.int32(0),
00018
00019
00020 matchToGenEvt = cms.bool(False),
00021
00022
00023 doKinFit = cms.bool(True),
00024 maxNrIter = cms.int32(200),
00025 maxDeltaS = cms.double(5e-05),
00026 maxF = cms.double(0.0001),
00027 constraints = cms.vint32(1, 2),
00028 jetParametrisation = cms.int32(0),
00029 metParametrisation = cms.int32(0),
00030 lepParametrisation = cms.int32(0),
00031
00032
00033 addLRJetComb = cms.bool(False),
00034 lrJetCombFile = cms.string('TopQuarkAnalysis/TopJetCombination/data/to_be_added.root')
00035 )
00036
00037