CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/src/TopQuarkAnalysis/TopEventProducers/python/producers/TtFullHadEvtBuilder_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #
00004 # module to fill the full-hadronic ttbar event structure
00005 #
00006 ttFullHadEvent = cms.EDProducer("TtFullHadEvtBuilder",
00007     ## choose leptonic decay modes
00008     decayChannel1 = cms.int32(0), # 0: none
00009                                   # 1: electron
00010                                   # 2: muon
00011                                   # 3: tau
00012     decayChannel2 = cms.int32(0), # 0: none
00013                                   # 1: electron
00014                                   # 2: muon
00015                                   # 3: tau
00016 
00017     ## set verbosity level
00018     verbosity = cms.int32(0),  # 0: no additional printout
00019                                # 1: print a summary for each event
00020 
00021     ## add genEvt (if available)
00022     genEvent = cms.InputTag("genEvt"),
00023 
00024     ## labels for event hypotheses
00025     ## (this vector of strings can be modified using the functions
00026     ## addTtFullHadHypotheses and removeTtFullHadHypGenMatch in
00027     ## TopQuarkAnalysis.TopEventProducers.sequences.ttFullHadEvtBuilder_cff)
00028     hypotheses = cms.vstring("ttFullHadHypGenMatch"),  # "ttFullHadHypKinFit"
00029                                                        # "ttFullHadHypMVADisc"
00030 
00031     ## add extra information on kinFit
00032     kinFit = cms.PSet(
00033         chi2 = cms.InputTag("kinFitTtFullHadEventHypothesis","Chi2"),
00034         prob = cms.InputTag("kinFitTtFullHadEventHypothesis","Prob"),
00035     ),
00036                                 
00037     ## add extra information on genMatch
00038     genMatch = cms.PSet(
00039         sumPt = cms.InputTag("ttFullHadJetPartonMatch","SumPt"),
00040         sumDR = cms.InputTag("ttFullHadJetPartonMatch","SumDR"),
00041     )
00042 )