00001 import FWCore.ParameterSet.Config as cms 00002 00003 hitFitTtSemiLepEvent = cms.EDProducer("TtSemiLepHitFitProducerElectron", 00004 jets = cms.InputTag("selectedPatJets"), 00005 leps = cms.InputTag("selectedPatElectrons"), 00006 mets = cms.InputTag("patMETs"), 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 use b-tagging 00025 # ------------------------------------------------ 00026 bTagAlgo = cms.string("trackCountingHighEffBJetTags"), 00027 minBDiscBJets = cms.double(1.0), 00028 maxBDiscLightJets = cms.double(3.0), 00029 useBTagging = cms.bool(False), 00030 00031 # ------------------------------------------------ 00032 # set mass values used in the constraints 00033 # set mass to 0 for no constraint 00034 # ------------------------------------------------ 00035 mW = cms.double(80.4), 00036 mTop = cms.double(0.), 00037 00038 # ------------------------------------------------ 00039 # specify jet correction level as, Uncorrected, L1Offset, L2Relative, L3Absolute, L4Emf, 00040 # L5Hadron, L6UE, L7Parton, a flavor specification will be added automatically, when 00041 # chosen 00042 # ------------------------------------------------ 00043 jetCorrectionLevel = cms.string("L3Absolute"), 00044 00045 # ------------------------------------------------ 00046 # rescale jets 00047 # ------------------------------------------------ 00048 jes = cms.double(1.0), 00049 jesB = cms.double(1.0), 00050 ) 00051 00052