Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-08-27 22:59:01

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def SiStripApvGainFromFileBuilder(**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 k,v in kwargs.items():
0018     setattr(mod, k, v)
0019   return mod