CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TtDilepEvtSolProducer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 # module to build dileptonic ttbar event solutions
5 # (one solution for each possible jet combination)
6 #
7 solutions = cms.EDProducer("TtDilepEvtSolutionMaker",
8  evtSource = cms.InputTag("genEvt"),
9  metSource = cms.InputTag("patMETs"),
10  tauSource = cms.InputTag("selectedPatTaus"),
11  muonSource = cms.InputTag("selectedPatMuons"),
12  electronSource = cms.InputTag("selectedPatElectrons"),
13  jetSource = cms.InputTag("selectedPatJets"),
14 
15  ## considered channels
16  mutauChannel = cms.bool(True),
17  etauChannel = cms.bool(True),
18  emuChannel = cms.bool(True),
19  eeChannel = cms.bool(True),
20  mumuChannel = cms.bool(True),
21  tautauChannel = cms.bool(True),
22 
23  ## choose jet correction scheme
24  jetCorrectionScheme = cms.int32(0),
25 
26  ## match to gen event?
27  matchToGenEvt = cms.bool(True),
28 
29  ## configuration of top mass calculation
30  calcTopMass = cms.bool(True),
31  tmassbegin = cms.double(100.0),
32  tmassend = cms.double(300.0),
33  tmassstep = cms.double(1.0),
34 
35  nrCombJets = cms.uint32(3),
36  bestSolFromMC = cms.bool(False),
37 
38  neutrino_parameters = cms.vdouble(30.7137,
39  56.2880,
40  23.0744,
41  59.1015,
42  24.9145)
43 )