Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:51

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 ak4CaloJetsForTrk = cms.EDProducer("FastjetJetProducer",
0004     Active_Area_Repeats = cms.int32(1),
0005     GhostArea = cms.double(0.01),
0006     Ghost_EtaMax = cms.double(5.0),
0007     Rho_EtaMax = cms.double(4.4),
0008     doAreaDiskApprox = cms.bool(False),
0009     doAreaFastjet = cms.bool(False),
0010     doPUOffsetCorr = cms.bool(False),
0011     doPVCorrection = cms.bool(True),
0012     doRhoFastjet = cms.bool(False),
0013     inputEMin = cms.double(0.0),
0014     inputEtMin = cms.double(0.3),
0015     jetAlgorithm = cms.string('AntiKt'),
0016     jetPtMin = cms.double(10.0),
0017     jetType = cms.string('CaloJet'),
0018     maxBadEcalCells = cms.uint32(9999999),
0019     maxBadHcalCells = cms.uint32(9999999),
0020     maxProblematicEcalCells = cms.uint32(9999999),
0021     maxProblematicHcalCells = cms.uint32(9999999),
0022     maxRecoveredEcalCells = cms.uint32(9999999),
0023     maxRecoveredHcalCells = cms.uint32(9999999),
0024     minSeed = cms.uint32(14327),
0025     nSigmaPU = cms.double(1.0),
0026     puPtMin = cms.double(10),
0027     rParam = cms.double(0.4),
0028     radiusPU = cms.double(0.5),
0029     src = cms.InputTag("hltPhase2TowerMakerForAll"),
0030     srcPVs = cms.InputTag("firstStepPrimaryVerticesUnsorted"),
0031     useDeterministicSeed = cms.bool(True),
0032     voronoiRfact = cms.double(-0.9)
0033 )