File indexing completed on 2024-11-23 03:28:24
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def JetCoreClusterSplitter(*args, **kwargs):
0004 mod = cms.EDProducer('JetCoreClusterSplitter',
0005 pixelCPE = cms.string('PixelCPEGeneric'),
0006 verbose = cms.bool(False),
0007 ptMin = cms.double(200),
0008 deltaRmax = cms.double(0.05),
0009 chargeFractionMin = cms.double(2),
0010 pixelClusters = cms.InputTag('siPixelCluster'),
0011 vertices = cms.InputTag('offlinePrimaryVertices'),
0012 cores = cms.InputTag('ak5CaloJets'),
0013 forceXError = cms.double(100),
0014 forceYError = cms.double(150),
0015 fractionalWidth = cms.double(0.4),
0016 chargePerUnit = cms.double(2000),
0017 centralMIPCharge = cms.double(26000),
0018 expSizeXAtLorentzAngleIncidence = cms.double(1.5),
0019 expSizeXDeltaPerTanAlpha = cms.double(0),
0020 expSizeYAtNormalIncidence = cms.double(1.3),
0021 tanLorentzAngle = cms.double(0),
0022 tanLorentzAngleBarrelLayer1 = cms.double(0),
0023 mightGet = cms.optional.untracked.vstring
0024 )
0025 for a in args:
0026 mod.update_(a)
0027 mod.update_(kwargs)
0028 return mod