CMS 3D CMS Logo

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

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #
00004 # module to build dileptonic ttbar event solutions
00005 # (one solution for each possible jet combination)
00006 #
00007 solutions = cms.EDProducer("TtDilepEvtSolutionMaker",
00008     evtSource      = cms.InputTag("genEvt"),
00009     metSource      = cms.InputTag("patMETs"),
00010     tauSource      = cms.InputTag("selectedPatTaus"),
00011     muonSource     = cms.InputTag("selectedPatMuons"),
00012     electronSource = cms.InputTag("selectedPatElectrons"),
00013     jetSource      = cms.InputTag("selectedPatJets"),
00014 
00015     ## considered channels                           
00016     mutauChannel   = cms.bool(True),
00017     etauChannel    = cms.bool(True),
00018     emuChannel     = cms.bool(True),
00019     eeChannel      = cms.bool(True),
00020     mumuChannel    = cms.bool(True),
00021     tautauChannel  = cms.bool(True),
00022 
00023     ## choose jet correction scheme
00024     jetCorrectionScheme = cms.int32(0),
00025 
00026     ## match to gen event?
00027     matchToGenEvt = cms.bool(True),
00028                            
00029     ## configuration of top mass calculation                           
00030     calcTopMass = cms.bool(True),
00031     tmassbegin = cms.double(100.0),
00032     tmassend   = cms.double(300.0),
00033     tmassstep  = cms.double(1.0),
00034 
00035     nrCombJets = cms.uint32(3),
00036     bestSolFromMC = cms.bool(False),
00037      
00038     neutrino_parameters = cms.vdouble(30.7137,
00039                                       56.2880,
00040                                       23.0744,
00041                                       59.1015,
00042                                       24.9145)
00043 )