File indexing completed on 2025-02-07 14:23:38
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def SiStripApvGainFromFileBuilder(*args, **kwargs):
0004 mod = cms.EDAnalyzer('SiStripApvGainFromFileBuilder',
0005 tickFile = cms.FileInPath('CondTools/SiStrip/data/tickheight.txt'),
0006 gainThreshold = cms.double(0),
0007 dummyAPVGain = cms.double(1.078125),
0008 doGainNormalization = cms.bool(False),
0009 putDummyIntoUncabled = cms.bool(False),
0010 putDummyIntoUnscanned = cms.bool(False),
0011 putDummyIntoOffChannels = cms.bool(False),
0012 putDummyIntoBadChannels = cms.bool(False),
0013 outputMaps = cms.bool(False),
0014 outputSummary = cms.bool(False),
0015 mightGet = cms.optional.untracked.vstring
0016 )
0017 for a in args:
0018 mod.update_(a)
0019 mod.update_(kwargs)
0020 return mod