Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:59:52

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 siStripGainESProducer = cms.ESProducer("SiStripGainESProducer",
0004     appendToDataLabel = cms.string(''),
0005     printDebug = cms.untracked.bool(False),
0006     AutomaticNormalization = cms.bool(False),
0007     APVGain = cms.VPSet(
0008         cms.PSet(
0009             Record = cms.string('SiStripApvGainRcd'),
0010             Label = cms.untracked.string(''),
0011             NormalizationFactor = cms.untracked.double(1.)
0012         ),
0013         cms.PSet(
0014             Record = cms.string('SiStripApvGain2Rcd'),
0015             Label = cms.untracked.string(''),
0016             NormalizationFactor = cms.untracked.double(1.)
0017         )
0018     )
0019 )
0020 
0021