CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/RecoJets/JetProducers/python/TrackJetParameters_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 TrackJetParameters = cms.PSet(
00004     src            = cms.InputTag('trackRefsForJets'),
00005     srcPVs         = cms.InputTag('offlinePrimaryVertices'),
00006     jetType        = cms.string('TrackJet'),
00007     doOutputJets   = cms.bool(True),
00008     jetPtMin       = cms.double(3.0),
00009     inputEMin      = cms.double(0.0),
00010     inputEtMin     = cms.double(0.0),
00011     doPVCorrection = cms.bool(False),
00012     # pileup with offset correction
00013     doPUOffsetCorr = cms.bool(False),
00014     # if pileup is false, these are not read:
00015     nSigmaPU = cms.double(1.0),
00016     radiusPU = cms.double(0.5),  
00017     # fastjet-style pileup     
00018     doAreaFastjet   = cms.bool(False),
00019     doRhoFastjet    = cms.bool(False),
00020     doAreaDiskApprox= cms.bool( False),
00021     voronoiRfact    = cms.double(-0.9),
00022     # if doPU is false, these are not read:
00023     Active_Area_Repeats = cms.int32(1),
00024     GhostArea = cms.double(0.01),
00025     Ghost_EtaMax = cms.double(5.0),
00026     # only use the tracks that were used to fit the vertex
00027     UseOnlyVertexTracks = cms.bool(False),
00028     # only consider the highest-sum-pT PV for clustering
00029     UseOnlyOnePV        = cms.bool(False),
00030     # maximum z-distance between track and vertex for association (in cm)
00031     DzTrVtxMax          = cms.double(1),
00032     # maximum xy-distance between track and vertex for association (in cm)
00033     DxyTrVtxMax         = cms.double(0.2),
00034     # minimum number of degrees of freedom to call a PV a good vertex
00035     MinVtxNdof          = cms.int32(5),
00036     # maximum z distance to origin to call a PV a good vertex
00037     MaxVtxZ             = cms.double(15.),
00038     useDeterministicSeed= cms.bool( True ),
00039     minSeed             = cms.uint32( 14327 )
00040 )