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 the single top event solutions
0005 # (one solution for each possible jet combination)
0006 #
0007 solutions = cms.EDProducer("StEvtSolutionMaker",
0008     metSource      = cms.InputTag("patMETs"),
0009     muonSource     = cms.InputTag("selectedPatMuons"),
0010     electronSource = cms.InputTag("selectedPatElectrons"),
0011     jetSource      = cms.InputTag("selectedPatJets"),
0012 
0013     ## lepton flavor
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(False),
0021 
0022     ## configuration of kinemtaic fit
0023     doKinFit  = cms.bool(True),
0024     maxNrIter = cms.int32(200),
0025     maxDeltaS = cms.double(5e-05),
0026     maxF      = cms.double(0.0001),
0027     constraints = cms.vint32(1, 2),
0028     jetParametrisation = cms.int32(0),
0029     metParametrisation = cms.int32(0),
0030     lepParametrisation = cms.int32(0),
0031 
0032     ## configuration of private LH ratio method
0033     addLRJetComb  = cms.bool(False),
0034     lrJetCombFile = cms.string('TopQuarkAnalysis/TopJetCombination/data/to_be_added.root')
0035 )
0036 
0037