CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CaloJetParameters_cfi.py
Go to the documentation of this file.
2 
3 CaloJetParameters = cms.PSet(
4  src = cms.InputTag('towerMaker'),
5  srcPVs = cms.InputTag('offlinePrimaryVertices'),
6  jetType = cms.string('CaloJet'),
7  # minimum jet pt
8  jetPtMin = cms.double(3.0),
9  # minimum calo tower input et
10  inputEtMin = cms.double(0.3),
11  # minimum calo tower input energy
12  inputEMin = cms.double(0.0),
13  # primary vertex correction
14  doPVCorrection = cms.bool(True),
15  # pileup with offset correction
16  doPUOffsetCorr = cms.bool(False),
17  # if pileup is false, these are not read:
18  nSigmaPU = cms.double(1.0),
19  radiusPU = cms.double(0.5),
20  # fastjet-style pileup
21  doAreaFastjet = cms.bool(False),
22  doRhoFastjet = cms.bool(False),
23  # if doPU is false, these are not read:
24  Active_Area_Repeats = cms.int32(1),
25  GhostArea = cms.double(0.01),
26  Ghost_EtaMax = cms.double(5.0),
27  Rho_EtaMax = cms.double(4.5)
28  )