Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:00:47

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def SubEventGenJetProducer(**kwargs):
0004   mod = cms.EDProducer('SubEventGenJetProducer',
0005     src = cms.InputTag('particleFlow'),
0006     srcPVs = cms.InputTag(''),
0007     jetType = cms.string('PFJet'),
0008     jetAlgorithm = cms.string('AntiKt'),
0009     rParam = cms.double(0.4),
0010     inputEtMin = cms.double(0),
0011     inputEMin = cms.double(0),
0012     jetPtMin = cms.double(5),
0013     doPVCorrection = cms.bool(False),
0014     doAreaFastjet = cms.bool(False),
0015     doRhoFastjet = cms.bool(False),
0016     doPUOffsetCorr = cms.bool(False),
0017     puPtMin = cms.double(10),
0018     nSigmaPU = cms.double(1),
0019     radiusPU = cms.double(0.5),
0020     subtractorName = cms.string(''),
0021     useExplicitGhosts = cms.bool(False),
0022     doAreaDiskApprox = cms.bool(False),
0023     voronoiRfact = cms.double(-0.9),
0024     Rho_EtaMax = cms.double(4.4),
0025     Ghost_EtaMax = cms.double(5),
0026     Active_Area_Repeats = cms.int32(1),
0027     GhostArea = cms.double(0.01),
0028     restrictInputs = cms.bool(False),
0029     maxInputs = cms.uint32(1),
0030     writeCompound = cms.bool(False),
0031     writeJetsWithConst = cms.bool(False),
0032     doFastJetNonUniform = cms.bool(False),
0033     useDeterministicSeed = cms.bool(False),
0034     minSeed = cms.uint32(14327),
0035     verbosity = cms.int32(0),
0036     puWidth = cms.double(0),
0037     nExclude = cms.uint32(0),
0038     maxBadEcalCells = cms.uint32(9999999),
0039     maxBadHcalCells = cms.uint32(9999999),
0040     maxProblematicEcalCells = cms.uint32(9999999),
0041     maxProblematicHcalCells = cms.uint32(9999999),
0042     maxRecoveredEcalCells = cms.uint32(9999999),
0043     maxRecoveredHcalCells = cms.uint32(9999999),
0044     puCenters = cms.vdouble(),
0045     applyWeight = cms.bool(False),
0046     srcWeights = cms.InputTag(''),
0047     minimumTowersFraction = cms.double(0),
0048     jetCollInstanceName = cms.string(''),
0049     mightGet = cms.optional.untracked.vstring
0050   )
0051   for k,v in kwargs.items():
0052     setattr(mod, k, v)
0053   return mod