CMS 3D CMS Logo

TrackJetParameters_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
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  doAreaDiskApprox= cms.bool( False),
20  voronoiRfact = cms.double(-0.9),
21  # if doPU is false, these are not read:
22  Active_Area_Repeats = cms.int32(1),
23  GhostArea = cms.double(0.01),
24  Ghost_EtaMax = cms.double(5.0),
25  # only use the tracks that were used to fit the vertex
26  UseOnlyVertexTracks = cms.bool(False),
27  # only consider the highest-sum-pT PV for clustering
28  UseOnlyOnePV = cms.bool(False),
29  # maximum z-distance between track and vertex for association (in cm)
30  DzTrVtxMax = cms.double(1),
31  # maximum xy-distance between track and vertex for association (in cm)
32  DxyTrVtxMax = cms.double(0.2),
33  # minimum number of degrees of freedom to call a PV a good vertex
34  MinVtxNdof = cms.int32(5),
35  # maximum z distance to origin to call a PV a good vertex
36  MaxVtxZ = cms.double(15.),
37  useDeterministicSeed= cms.bool( True ),
38  minSeed = cms.uint32( 14327 )
39 )