CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/TopQuarkAnalysis/TopEventProducers/python/producers/StEvtSolProducer_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #
00004 # module to build the single top event solutions
00005 # (one solution for each possible jet combination)
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     ## lepton flavor
00014     leptonFlavour = cms.string('muon'),
00015                            
00016     ## choose jet correction scheme                       
00017     jetCorrectionScheme = cms.int32(0),
00018 
00019     ## match to gen event?
00020     matchToGenEvt = cms.bool(False),
00021 
00022     ## configuration of kinemtaic fit
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     ## configuration of private LH ratio method
00033     addLRJetComb  = cms.bool(False),
00034     lrJetCombFile = cms.string('TopQuarkAnalysis/TopJetCombination/data/to_be_added.root')
00035 )
00036 
00037