Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:25:35

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 TrackJetParameters = cms.PSet(
0004     src            = cms.InputTag('trackRefsForJets'),
0005     srcPVs         = cms.InputTag('offlinePrimaryVertices'),
0006     jetType        = cms.string('TrackJet'),
0007     jetPtMin       = cms.double(3.0),
0008     inputEMin      = cms.double(0.0),
0009     inputEtMin     = cms.double(0.0),
0010     doPVCorrection = cms.bool(False),
0011     # pileup with offset correction
0012     doPUOffsetCorr = cms.bool(False),
0013     # if pileup is false, these are not read:
0014     nSigmaPU = cms.double(1.0),
0015     radiusPU = cms.double(0.5),  
0016     # fastjet-style pileup     
0017     doAreaFastjet   = cms.bool(False),
0018     doRhoFastjet    = cms.bool(False),
0019     doAreaDiskApprox= cms.bool( False),
0020     voronoiRfact    = cms.double(-0.9),
0021     # if doPU is false, these are not read:
0022     Active_Area_Repeats = cms.int32(1),
0023     GhostArea = cms.double(0.01),
0024     Ghost_EtaMax = cms.double(5.0),
0025     # only use the tracks that were used to fit the vertex
0026     UseOnlyVertexTracks = cms.bool(False),
0027     # only consider the highest-sum-pT PV for clustering
0028     UseOnlyOnePV        = cms.bool(False),
0029     # maximum z-distance between track and vertex for association (in cm)
0030     DzTrVtxMax          = cms.double(1),
0031     # maximum xy-distance between track and vertex for association (in cm)
0032     DxyTrVtxMax         = cms.double(0.2),
0033     # minimum number of degrees of freedom to call a PV a good vertex
0034     MinVtxNdof          = cms.int32(5),
0035     # maximum z distance to origin to call a PV a good vertex
0036     MaxVtxZ             = cms.double(15.),
0037     useDeterministicSeed= cms.bool( True ),
0038     minSeed             = cms.uint32( 14327 ),
0039     applyWeight         = cms.bool( False )
0040 )