CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ak7CastorJets_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
3 
4 ak7CastorJets = cms.EDProducer(
5  "FastjetJetProducer",
6  AnomalousCellParameters,
7  src = cms.InputTag('CastorTowerReco'),
8  srcPVs = cms.InputTag('offlinePrimaryVertices'),
9  jetType = cms.string('BasicJet'),
10  # minimum jet pt
11  jetPtMin = cms.double(0.0),
12  # minimum calo tower input et
13  inputEtMin = cms.double(0.0),
14  # minimum calo tower input energy
15  inputEMin = cms.double(0.0),
16  # primary vertex correction
17  doPVCorrection = cms.bool(True),
18  # pileup with offset correction
19  doPUOffsetCorr = cms.bool(False),
20  # if pileup is false, these are not read:
21  nSigmaPU = cms.double(1.0),
22  radiusPU = cms.double(0.5),
23  # fastjet-style pileup
24  doAreaFastjet = cms.bool(False),
25  doRhoFastjet = cms.bool(False),
26  # if doPU is false, these are not read:
27  Active_Area_Repeats = cms.int32(1),
28  GhostArea = cms.double(0.01),
29  Ghost_EtaMax = cms.double(5.0),
30  jetAlgorithm = cms.string("AntiKt"),
31  rParam = cms.double(0.7)
32  )
33