Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:31:13

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #
0004 # module to build semi-leptonic ttbar event solutions
0005 # (one solution for each possible jet combination)
0006 #
0007 solutions = cms.EDProducer("TtSemiEvtSolutionMaker",
0008     metSource = cms.InputTag("patMETs"),
0009     muonSource = cms.InputTag("selectedPatMuons"),
0010     electronSource = cms.InputTag("selectedPatElectrons"),
0011     jetSource = cms.InputTag("selectedPatJets"),
0012 
0013     ## considered channel
0014     leptonFlavour = cms.string('muon'),
0015 
0016     ## choose jet correction scheme
0017     jetCorrectionScheme = cms.int32(0),
0018 
0019     ## match to gen event?
0020     matchToGenEvt      = cms.bool(True),
0021     matchingAlgorithm  = cms.int32(0),
0022     useDeltaR          = cms.bool(True),
0023     maximalDistance    = cms.double(0.3),
0024     useMaximalDistance = cms.bool(True),
0025                            
0026     ## configure kinematic fit
0027     doKinFit = cms.bool(True),
0028     maxNrIter = cms.int32(200),
0029     maxDeltaS = cms.double(5e-05),
0030     maxF = cms.double(0.0001),
0031     constraints = cms.vuint32(1),
0032     jetParametrisation = cms.int32(0),
0033     metParametrisation = cms.int32(0),
0034     lepParametrisation = cms.int32(0),
0035 
0036     ## configuration of private LH ratio method                           
0037     addLRJetComb = cms.bool(True),
0038     lrJetCombObs    = cms.vint32(-1),
0039     lrJetCombFile   = cms.string('TopQuarkAnalysis/TopJetCombination/data/TtSemiLRJetCombSelObsAndPurity.root'),
0040 
0041     addLRSignalSel  = cms.bool(True),
0042     lrSignalSelObs  = cms.vint32(-1),
0043     lrSignalSelFile = cms.string('TopQuarkAnalysis/TopEventSelection/data/TtSemiLRSignalSelSelObsAndPurity.root'),
0044 
0045     nrCombJets = cms.uint32(4)
0046 )
0047 
0048