CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/RecoJets/JetProducers/python/ak7CastorJets_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 from RecoJets.JetProducers.AnomalousCellParameters_cfi import *
00003 
00004 ak7BasicJets = cms.EDProducer(
00005     "FastjetJetProducer",
00006     AnomalousCellParameters,
00007     src            = cms.InputTag('CastorTowerReco'),
00008     srcPVs         = cms.InputTag('offlinePrimaryVertices'),
00009     jetType        = cms.string('BasicJet'),
00010     # minimum jet pt
00011     jetPtMin       = cms.double(0.0),
00012     # minimum calo tower input et
00013     inputEtMin     = cms.double(0.0),
00014     # minimum calo tower input energy
00015     inputEMin      = cms.double(0.0),
00016     # primary vertex correction
00017     doPVCorrection = cms.bool(True),
00018     # pileup with offset correction
00019     doPUOffsetCorr = cms.bool(False),
00020        # if pileup is false, these are not read:
00021        nSigmaPU = cms.double(1.0),
00022        radiusPU = cms.double(0.5),  
00023     # fastjet-style pileup 
00024     doAreaFastjet    = cms.bool(False),
00025     doRhoFastjet     = cms.bool(False),
00026        # if doPU is false, these are not read:
00027        Active_Area_Repeats = cms.int32(1),
00028        GhostArea = cms.double(0.01),
00029        Ghost_EtaMax = cms.double(5.0),
00030     jetAlgorithm = cms.string("AntiKt"),
00031     rParam       = cms.double(0.7)
00032     )
00033