CMS 3D CMS Logo

TtSemiLepEvtBuilder_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #
00004 # module to fill the semi-leptonic ttbar event structure
00005 #
00006 ttSemiLepEvent = cms.EDProducer("ttSemiLepEvtBuilder",
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(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                                # N: print a summary for N events
00020 
00021     ## add genEvt (if available)
00022     genEvent = cms.InputTag("genEvt"),
00023 
00024     ## maximum number of jets taken into account per event for each hypothesis
00025     ## (this parameter is used in the ttSemiLepEvtBuilder_cff to synchronize
00026     ## the individual maxNJets parameters)
00027     maxNJets = cms.int32(4),  # has to be >= 4
00028                               # can be set to -1 to take all jets
00029 
00030     ## labels for event hypotheses
00031     hypotheses = cms.vstring("ttSemiLepHypGeom",
00032                              "ttSemiLepHypWMassMaxSumPt",
00033                              "ttSemiLepHypMaxSumPtWMass",
00034                              "ttSemiLepHypGenMatch",
00035                              "ttSemiLepHypKinFit",
00036                              "ttSemiLepHypMVADisc"
00037                              ),
00038                                 
00039     ## add extra information on kinFit
00040     kinFit = cms.PSet(
00041         chi2 = cms.InputTag("kinFitTtSemiLepEventHypothesis","Chi2"),
00042         prob = cms.InputTag("kinFitTtSemiLepEventHypothesis","Prob"),
00043     ),
00044 
00045     ## add extra information on genMatch
00046     genMatch = cms.PSet(
00047         sumPt = cms.InputTag("ttSemiLepJetPartonMatch","SumPt"),
00048         sumDR = cms.InputTag("ttSemiLepJetPartonMatch","SumDR"),
00049     ),
00050 
00051     ## add extra information on mvaDisc
00052     mvaDisc = cms.PSet(
00053         meth = cms.InputTag("findTtSemiLepJetCombMVA","Method"),
00054         disc = cms.InputTag("findTtSemiLepJetCombMVA","Discriminators")
00055     )
00056 )

Generated on Tue Jun 9 17:48:06 2009 for CMSSW by  doxygen 1.5.4