CMS 3D CMS Logo

SiStripConfObjectFakeESSource_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 siStripConfObjectFakeESSource = cms.ESSource("SiStripConfObjectFakeESSource",
4  appendToDataLabel = cms.string(''),
5  Parameters = cms.VPSet(
6  cms.PSet(
7  ParameterName = cms.string("par1"),
8  ParameterType = cms.string("int"),
9  ParameterValue = cms.int32(1),
10  ),
11  cms.PSet(
12  ParameterName = cms.string("par2"),
13  ParameterType = cms.string("double"),
14  ParameterValue = cms.double(1.1),
15  ),
16  cms.PSet(
17  ParameterName = cms.string("par3"),
18  ParameterType = cms.string("string"),
19  ParameterValue = cms.string("one"),
20  ),
21  )
22  )
23 
24 
25