File indexing completed on 2024-11-23 03:28:14
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def TPFastJetProducer(*args, **kwargs):
0004 mod = cms.EDProducer('TPFastJetProducer',
0005 TrackingParticleInputTag = cms.InputTag('mix', 'MergedTrackTruth'),
0006 MCTruthStubInputTag = cms.InputTag('TTStubAssociatorFromPixelDigis', 'StubAccepted'),
0007 tp_ptMin = cms.double(2),
0008 tp_etaMax = cms.double(2.4),
0009 tp_zMax = cms.double(15),
0010 tp_nStubMin = cms.int32(4),
0011 tp_nStubLayerMin = cms.int32(4),
0012 coneSize = cms.double(0.4),
0013 mightGet = cms.optional.untracked.vstring
0014 )
0015 for a in args:
0016 mod.update_(a)
0017 mod.update_(kwargs)
0018 return mod