CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/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.VInputTag("ttFullHadHypGenMatch"),  # "ttFullHadHypKinFit"
00029 
00030     ## add extra information on kinFit
00031     kinFit = cms.PSet(
00032         chi2 = cms.InputTag("kinFitTtFullHadEventHypothesis","Chi2"),
00033         prob = cms.InputTag("kinFitTtFullHadEventHypothesis","Prob"),
00034     ),
00035                                 
00036     ## add extra information on genMatch
00037     genMatch = cms.PSet(
00038         sumPt = cms.InputTag("ttFullHadJetPartonMatch","SumPt"),
00039         sumDR = cms.InputTag("ttFullHadJetPartonMatch","SumDR"),
00040     )
00041 )