CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/CalibTracker/SiStripESProducers/python/fake/SiStripConfObjectFakeESSource_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from CalibTracker.SiStripESProducers.services.SiStripConfObjectGeneratorService_cfi import *
00004 
00005 SiStripConfObjectGenerator.Parameters = cms.VPSet(
00006     cms.PSet(
00007         ParameterName = cms.string("par1"),
00008         ParameterType = cms.string("int"),
00009         ParameterValue = cms.int32(1),
00010     ),
00011     cms.PSet(
00012         ParameterName = cms.string("par2"),
00013         ParameterType = cms.string("double"),
00014         ParameterValue = cms.double(1.1),
00015     ),
00016     cms.PSet(
00017         ParameterName = cms.string("par3"),
00018         ParameterType = cms.string("string"),
00019         ParameterValue = cms.string("one"),
00020     ),
00021 )
00022 
00023 SiStripConfObjectFakeESSource = cms.ESSource("SiStripConfObjectFakeESSource",
00024                                          appendToDataLabel = cms.string('')
00025                                          )
00026 
00027 
00028