Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-11-06 23:37:55

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 siStripApvGainFromFileBuilder = cms.EDAnalyzer('SiStripApvGainFromFileBuilder',
0004   tickFile = cms.FileInPath('CondTools/SiStrip/data/tickheight.txt'),
0005   gainThreshold = cms.double(0),
0006   dummyAPVGain = cms.double(1.078125),
0007   doGainNormalization = cms.bool(False),
0008   putDummyIntoUncabled = cms.bool(False),
0009   putDummyIntoUnscanned = cms.bool(False),
0010   putDummyIntoOffChannels = cms.bool(False),
0011   putDummyIntoBadChannels = cms.bool(False),
0012   outputMaps = cms.bool(False),
0013   outputSummary = cms.bool(False),
0014   mightGet = cms.optional.untracked.vstring
0015 )