CMS 3D CMS Logo

TtSemiLepHitFitProducer_Electrons_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hitFitTtSemiLepEvent = cms.EDProducer("TtSemiLepHitFitProducerElectron",
4  jets = cms.InputTag("selectedPatJets"),
5  leps = cms.InputTag("selectedPatElectrons"),
6  mets = cms.InputTag("patMETs"),
7 
8  # ------------------------------------------------
9  # maximum number of jets to be considered in the
10  # jet combinatorics (has to be >= 4, can be set to
11  # -1 if you want to take all)
12  # ------------------------------------------------
13  maxNJets = cms.int32(4),
14 
15  #-------------------------------------------------
16  # maximum number of jet combinations finally
17  # written into the event, starting from the "best"
18  # (has to be >= 1, can be set to -1 if you want to
19  # take all)
20  #-------------------------------------------------
21  maxNComb = cms.int32(1),
22 
23  # ------------------------------------------------
24  # option to use b-tagging
25  # ------------------------------------------------
26  bTagAlgo = cms.string("trackCountingHighEffBJetTags"),
27  minBDiscBJets = cms.double(1.0),
28  maxBDiscLightJets = cms.double(3.0),
29  useBTagging = cms.bool(False),
30 
31  # ------------------------------------------------
32  # set mass values used in the constraints
33  # set mass to 0 for no constraint
34  # ------------------------------------------------
35  mW = cms.double(80.4),
36  mTop = cms.double(0.),
37 
38  # ------------------------------------------------
39  # specify jet correction level as, Uncorrected, L1Offset, L2Relative, L3Absolute, L4Emf,
40  # L5Hadron, L6UE, L7Parton, a flavor specification will be added automatically, when
41  # chosen
42  # ------------------------------------------------
43  jetCorrectionLevel = cms.string("L3Absolute"),
44 
45  # ------------------------------------------------
46  # rescale jets
47  # ------------------------------------------------
48  jes = cms.double(1.0),
49  jesB = cms.double(1.0),
50 )
51 
52