File indexing completed on 2024-09-26 05:05:44
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def JetHTAnalyzer(*args, **kwargs):
0004 mod = cms.EDAnalyzer('JetHTAnalyzer',
0005 vtxCollection = cms.InputTag('offlinePrimaryVerticesFromRefittedTrks'),
0006 triggerResults = cms.InputTag('TriggerResults', '', 'HLT'),
0007 trackCollection = cms.InputTag('TrackRefitter'),
0008 printTriggerTable = cms.untracked.int32(0),
0009 minVertexNdf = cms.untracked.double(10),
0010 minVertexMeanWeight = cms.untracked.double(0.5),
0011 profilePtBorders = cms.untracked.vdouble(
0012 3,
0013 5,
0014 10,
0015 20,
0016 50,
0017 100
0018 ),
0019 iovList = cms.untracked.vint32(
0020 0,
0021 500000
0022 ),
0023 mightGet = cms.optional.untracked.vstring
0024 )
0025 for a in args:
0026 mod.update_(a)
0027 mod.update_(kwargs)
0028 return mod