Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-07-18 22:33:50

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 jetHTAnalyzer = cms.EDAnalyzer('JetHTAnalyzer',
0004   vtxCollection = cms.InputTag('offlinePrimaryVerticesFromRefittedTrks'),
0005   triggerResults = cms.InputTag('TriggerResults', '', 'HLT'),
0006   trackCollection = cms.InputTag('TrackRefitter'),
0007   printTriggerTable = cms.untracked.int32(0),
0008   minVertexNdf = cms.untracked.double(10),
0009   minVertexMeanWeight = cms.untracked.double(0.5),
0010   profilePtBorders = cms.untracked.vdouble(
0011     3,
0012     5,
0013     10,
0014     20,
0015     50,
0016     100
0017   ),
0018   iovList = cms.untracked.vint32(
0019     0,
0020     500000
0021   ),
0022   mightGet = cms.optional.untracked.vstring
0023 )