CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/TopQuarkAnalysis/TopEventProducers/python/producers/TtSemiEvtSolProducer_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #
00004 # module to build semi-leptonic ttbar event solutions
00005 # (one solution for each possible jet combination)
00006 #
00007 solutions = cms.EDProducer("TtSemiEvtSolutionMaker",
00008     metSource = cms.InputTag("patMETs"),
00009     muonSource = cms.InputTag("selectedPatMuons"),
00010     electronSource = cms.InputTag("selectedPatElectrons"),
00011     jetSource = cms.InputTag("selectedPatJets"),
00012 
00013     ## considered channel
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(True),
00021     matchingAlgorithm  = cms.int32(0),
00022     useDeltaR          = cms.bool(True),
00023     maximalDistance    = cms.double(0.3),
00024     useMaximalDistance = cms.bool(True),
00025                            
00026     ## configure kinematic fit
00027     doKinFit = cms.bool(True),
00028     maxNrIter = cms.int32(200),
00029     maxDeltaS = cms.double(5e-05),
00030     maxF = cms.double(0.0001),
00031     constraints = cms.vuint32(1),
00032     jetParametrisation = cms.int32(0),
00033     metParametrisation = cms.int32(0),
00034     lepParametrisation = cms.int32(0),
00035 
00036     ## configuration of private LH ratio method                           
00037     addLRJetComb = cms.bool(True),
00038     lrJetCombObs    = cms.vint32(-1),
00039     lrJetCombFile   = cms.string('TopQuarkAnalysis/TopJetCombination/data/TtSemiLRJetCombSelObsAndPurity.root'),
00040 
00041     addLRSignalSel  = cms.bool(True),
00042     lrSignalSelObs  = cms.vint32(-1),
00043     lrSignalSelFile = cms.string('TopQuarkAnalysis/TopEventSelection/data/TtSemiLRSignalSelSelObsAndPurity.root'),
00044 
00045     nrCombJets = cms.uint32(4)
00046 )
00047 
00048