CMS 3D CMS Logo

hltak4CaloJets_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 import RecoJets.JetProducers.FastjetJetProducer_cfi as _mod
3 
4 hltak4CaloJets = _mod.FastjetJetProducer.clone(
5  useDeterministicSeed = True,
6  voronoiRfact = 0.9,
7  srcPVs = "offlinePrimaryVertices",
8  inputEtMin = 0.3,
9  jetPtMin = 3.0,
10  jetType = 'CaloJet',
11  radiusPU = 0.4,
12  doAreaDiskApprox = True,
13  DzTrVtxMax = 0.0,
14  DxyTrVtxMax = 0.0,
15  src = "hltTowerMakerForAll"
16 )