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 dileptonic ttbar event solutions
0005 # (one solution for each possible jet combination)
0006 #
0007 solutions = cms.EDProducer("TtDilepEvtSolutionMaker",
0008     evtSource      = cms.InputTag("genEvt"),
0009     metSource      = cms.InputTag("patMETs"),
0010     tauSource      = cms.InputTag("selectedPatTaus"),
0011     muonSource     = cms.InputTag("selectedPatMuons"),
0012     electronSource = cms.InputTag("selectedPatElectrons"),
0013     jetSource      = cms.InputTag("selectedPatJets"),
0014 
0015     ## considered channels                           
0016     mutauChannel   = cms.bool(True),
0017     etauChannel    = cms.bool(True),
0018     emuChannel     = cms.bool(True),
0019     eeChannel      = cms.bool(True),
0020     mumuChannel    = cms.bool(True),
0021     tautauChannel  = cms.bool(True),
0022 
0023     ## choose jet correction scheme
0024     jetCorrectionScheme = cms.int32(0),
0025 
0026     ## match to gen event?
0027     matchToGenEvt = cms.bool(True),
0028                            
0029     ## configuration of top mass calculation                           
0030     calcTopMass = cms.bool(True),
0031     tmassbegin = cms.double(100.0),
0032     tmassend   = cms.double(300.0),
0033     tmassstep  = cms.double(1.0),
0034 
0035     nrCombJets = cms.uint32(3),
0036     bestSolFromMC = cms.bool(False),
0037      
0038     neutrino_parameters = cms.vdouble(30.7137,
0039                                       56.2880,
0040                       23.0744,
0041                       59.1015,
0042                       24.9145)
0043 )