00001 import FWCore.ParameterSet.Config as cms 00002 00003 kinFitTtSemiLepEvent = cms.EDProducer("TtSemiLepKinFitProducerElectron", 00004 jets = cms.InputTag("selectedLayer1Jets"), 00005 leps = cms.InputTag("selectedLayer1Electrons"), 00006 mets = cms.InputTag("selectedLayer1METs"), 00007 00008 # ------------------------------------------------ 00009 # maximum number of jets to be considered in the 00010 # jet combinatorics (has to be >= 4, can be set to 00011 # -1 if you want to take all) 00012 # ------------------------------------------------ 00013 maxNJets = cms.int32(4), 00014 00015 #------------------------------------------------- 00016 # maximum number of jet combinations finally 00017 # written into the event, starting from the "best" 00018 # (has to be >= 1, can be set to -1 if you want to 00019 # take all) 00020 #------------------------------------------------- 00021 maxNComb = cms.int32(1), 00022 00023 # ------------------------------------------------ 00024 # option to take only a given jet combination 00025 # instead of going through the full combinatorics 00026 # ------------------------------------------------ 00027 match = cms.InputTag("findTtSemiLepJetCombMVA"), 00028 useOnlyMatch = cms.bool(False), 00029 00030 # ------------------------------------------------ 00031 # settings for the KinFitter 00032 # ------------------------------------------------ 00033 maxNrIter = cms.uint32(500), 00034 maxDeltaS = cms.double(5e-05), 00035 maxF = cms.double(0.0001), 00036 # ------------------------------------------------ 00037 # select parametrisation 00038 # 0: EMom, 1: EtEtaPhi, 2: EtThetaPhi 00039 # ------------------------------------------------ 00040 jetParametrisation = cms.uint32(1), 00041 lepParametrisation = cms.uint32(1), 00042 metParametrisation = cms.uint32(1), 00043 # ------------------------------------------------ 00044 # set constraints 00045 # 1: Whad-mass, 2: Wlep-mass 00046 # 3: thad-mass, 4: tlep-mass, 5: nu-mass 00047 # ------------------------------------------------ 00048 constraints = cms.vuint32(1, 2) 00049 ) 00050 00051