CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/TopQuarkAnalysis/TopEventProducers/python/producers/TtFullLepEvtBuilder_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #
00004 # module to fill the full-leptonic ttbar event structure
00005 #
00006 ttFullLepEvent = cms.EDProducer("TtFullLepEvtBuilder",
00007     ## choose leptonic decay modes
00008     decayChannel1 = cms.int32(2),  # 0: none
00009                                   # 1: electron
00010                                   # 2: muon
00011                                   # 3: tau
00012     decayChannel2 = cms.int32(2),  # 0: none
00013                                   # 1: electron
00014                                   # 2: muon
00015                                   # 3: tau
00016 
00017 
00018     ## set verbosity level
00019     verbosity = cms.int32(0),  # 0: no additional printout
00020                                # 1: print a summary for each event
00021 
00022     ## add genEvt (if available)
00023     genEvent = cms.InputTag("genEvt"),
00024 
00025     ## maximum number of jets taken into account per event for each hypothesis
00026     ## (this parameter is used in the ttFullLepEvtBuilder_cff to synchronize
00027     ## the individual maxNJets parameters)
00028     maxNJets = cms.int32(4),  # has to be >= 2
00029                               # can be set to -1 to take all jets
00030 
00031     ## labels for event hypotheses
00032     hypotheses = cms.vstring("ttFullLepHypGenMatch",
00033                              "ttFullLepHypKinSolution"                
00034                             ),
00035                                 
00036     ## add extra information on kinSolution
00037     kinSolution = cms.PSet(
00038         solWeight   = cms.InputTag("kinSolutionTtFullLepEventHypothesis","solWeight"),
00039         wrongCharge = cms.InputTag("kinSolutionTtFullLepEventHypothesis","isWrongCharge"),
00040     ),
00041 
00042     ## add extra information on genMatch
00043     genMatch = cms.PSet(
00044         sumPt = cms.InputTag("ttFullLepJetPartonMatch","SumPt"),
00045         sumDR = cms.InputTag("ttFullLepJetPartonMatch","SumDR"),
00046     ),
00047 )