Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 from RecoJets.JetProducers.AnomalousCellParameters_cfi import *
0003 
0004 ak7CastorJets = cms.EDProducer(
0005     "FastjetJetProducer",
0006     AnomalousCellParameters,
0007     src            = cms.InputTag('CastorTowerReco'),
0008     srcPVs         = cms.InputTag('offlinePrimaryVertices'),
0009     jetType        = cms.string('BasicJet'),
0010     # minimum jet pt
0011     jetPtMin       = cms.double(0.0),
0012     # minimum calo tower input et
0013     inputEtMin     = cms.double(0.0),
0014     # minimum calo tower input energy
0015     inputEMin      = cms.double(0.0),
0016     # primary vertex correction
0017     doPVCorrection = cms.bool(True),
0018     # pileup with offset correction
0019     doPUOffsetCorr = cms.bool(False),
0020        # if pileup is false, these are not read:
0021        nSigmaPU = cms.double(1.0),
0022        radiusPU = cms.double(0.5),  
0023     # fastjet-style pileup 
0024     doAreaFastjet    = cms.bool(False),
0025     doRhoFastjet     = cms.bool(False),
0026        # if doPU is false, these are not read:
0027        Active_Area_Repeats = cms.int32(1),
0028        GhostArea = cms.double(0.01),
0029        Ghost_EtaMax = cms.double(5.0),
0030     jetAlgorithm = cms.string("AntiKt"),
0031     rParam       = cms.double(0.7)
0032     )
0033