CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrackJetParameters_cfi.py
Go to the documentation of this file.
2 
3 TrackJetParameters = cms.PSet(
4  src = cms.InputTag('trackRefsForJets'),
5  srcPVs = cms.InputTag('offlinePrimaryVertices'),
6  jetType = cms.string('TrackJet'),
7  jetPtMin = cms.double(3.0),
8  inputEMin = cms.double(0.0),
9  inputEtMin = cms.double(0.0),
10  doPVCorrection = cms.bool(False),
11  # pileup with offset correction
12  doPUOffsetCorr = cms.bool(False),
13  # if pileup is false, these are not read:
14  nSigmaPU = cms.double(1.0),
15  radiusPU = cms.double(0.5),
16  # fastjet-style pileup
17  doAreaFastjet = cms.bool(False),
18  doRhoFastjet = cms.bool(False),
19  # if doPU is false, these are not read:
20  Active_Area_Repeats = cms.int32(1),
21  GhostArea = cms.double(0.01),
22  Ghost_EtaMax = cms.double(5.0),
23  # only use the tracks that were used to fit the vertex
24  UseOnlyVertexTracks = cms.bool(False),
25  # only consider the highest-sum-pT PV for clustering
26  UseOnlyOnePV = cms.bool(False),
27  # maximum z-distance between track and vertex for association (in cm)
28  DzTrVtxMax = cms.double(1),
29  # maximum xy-distance between track and vertex for association (in cm)
30  DxyTrVtxMax = cms.double(0.2),
31  # minimum number of degrees of freedom to call a PV a good vertex
32  MinVtxNdof = cms.int32(5),
33  # maximum z distance to origin to call a PV a good vertex
34  MaxVtxZ = cms.double(15.)
35 
36  )