Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-11-23 03:27:58

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def DQMHcalIterativePhiSymAlCaReco(*args, **kwargs):
0004   mod = cms.EDProducer('DQMHcalIterativePhiSymAlCaReco',
0005     folderName = cms.string('ALCAStreamHcalIterativePhiSym'),
0006     hbheInput = cms.InputTag('hbhereco'),
0007     hfInput = cms.InputTag('hfreco'),
0008     hoInput = cms.InputTag('horeco'),
0009     hiDistr_y_nbin = cms.untracked.int32(72),
0010     hiDistr_y_min = cms.untracked.double(0.5),
0011     hiDistr_y_max = cms.untracked.double(72.5),
0012     hiDistr_x_nbin = cms.untracked.int32(83),
0013     hiDistr_x_min = cms.untracked.double(-41.5),
0014     hiDistr_x_max = cms.untracked.double(41.5),
0015     mightGet = cms.optional.untracked.vstring
0016   )
0017   for a in args:
0018     mod.update_(a)
0019   mod.update_(kwargs)
0020   return mod