|
||||
File indexing completed on 2024-04-06 12:31:17
0001 import FWCore.ParameterSet.Config as cms 0002 0003 hitFitTtSemiLepEvent = cms.EDProducer("TtSemiLepHitFitProducerElectron", 0004 jets = cms.InputTag("selectedPatJets"), 0005 leps = cms.InputTag("selectedPatElectrons"), 0006 mets = cms.InputTag("patMETs"), 0007 0008 # ------------------------------------------------ 0009 # maximum number of jets to be considered in the 0010 # jet combinatorics (has to be >= 4, can be set to 0011 # -1 if you want to take all) 0012 # ------------------------------------------------ 0013 maxNJets = cms.int32(4), 0014 0015 #------------------------------------------------- 0016 # maximum number of jet combinations finally 0017 # written into the event, starting from the "best" 0018 # (has to be >= 1, can be set to -1 if you want to 0019 # take all) 0020 #------------------------------------------------- 0021 maxNComb = cms.int32(1), 0022 0023 # ------------------------------------------------ 0024 # option to use b-tagging 0025 # ------------------------------------------------ 0026 bTagAlgo = cms.string("trackCountingHighEffBJetTags"), 0027 minBDiscBJets = cms.double(1.0), 0028 maxBDiscLightJets = cms.double(3.0), 0029 useBTagging = cms.bool(False), 0030 0031 # ------------------------------------------------ 0032 # set mass values used in the constraints 0033 # set mass to 0 for no constraint 0034 # ------------------------------------------------ 0035 mW = cms.double(80.4), 0036 mTop = cms.double(0.), 0037 0038 # ------------------------------------------------ 0039 # specify jet correction level as, Uncorrected, L1Offset, L2Relative, L3Absolute, L4Emf, 0040 # L5Hadron, L6UE, L7Parton, a flavor specification will be added automatically, when 0041 # chosen 0042 # ------------------------------------------------ 0043 jetCorrectionLevel = cms.string("L3Absolute"), 0044 0045 # ------------------------------------------------ 0046 # rescale jets 0047 # ------------------------------------------------ 0048 jes = cms.double(1.0), 0049 jesB = cms.double(1.0), 0050 ) 0051 0052
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |