File indexing completed on 2025-02-07 14:23:31
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def TrackerOfflineValidationSummary(*args, **kwargs):
0004 mod = cms.EDAnalyzer('TrackerOfflineValidationSummary',
0005 moduleDirectoryInOutput = cms.string('Alignment/Tracker'),
0006 useFit = cms.bool(False),
0007 stripYDmrs = cms.bool(False),
0008 minEntriesPerModuleForDmr = cms.uint32(100),
0009 TH1DmrXprimeStripModules = cms.PSet(
0010 Nbinx = cms.int32(100),
0011 xmin = cms.double(-5),
0012 xmax = cms.double(5)
0013 ),
0014 TH1DmrYprimeStripModules = cms.PSet(
0015 Nbinx = cms.int32(100),
0016 xmin = cms.double(-5),
0017 xmax = cms.double(5)
0018 ),
0019 TH1DmrXprimePixelModules = cms.PSet(
0020 Nbinx = cms.int32(100),
0021 xmin = cms.double(-5),
0022 xmax = cms.double(5)
0023 ),
0024 TH1DmrYprimePixelModules = cms.PSet(
0025 Nbinx = cms.int32(100),
0026 xmin = cms.double(-5),
0027 xmax = cms.double(5)
0028 ),
0029 mightGet = cms.optional.untracked.vstring
0030 )
0031 for a in args:
0032 mod.update_(a)
0033 mod.update_(kwargs)
0034 return mod