Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-26 05:06:27

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def Phase2OTValidateTTStub(*args, **kwargs):
0004   mod = cms.EDProducer('Phase2OTValidateTTStub',
0005     TH2TTStub_RZ = cms.PSet(
0006       Nbinsx = cms.int32(900),
0007       xmax = cms.double(300),
0008       xmin = cms.double(-300),
0009       Nbinsy = cms.int32(900),
0010       ymax = cms.double(120),
0011       ymin = cms.double(0)
0012     ),
0013     TopFolderName = cms.string('TrackerPhase2OTStubV'),
0014     TTStubs = cms.InputTag('TTStubsFromPhase2TrackerDigis', 'StubAccepted'),
0015     mightGet = cms.optional.untracked.vstring
0016   )
0017   for a in args:
0018     mod.update_(a)
0019   mod.update_(kwargs)
0020   return mod