Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from CondCore.CondDB.CondDB_cfi import *
0004 poolDBESSource = cms.ESSource("PoolDBESSource",
0005     CondDB,
0006     BlobStreamerName = cms.untracked.string('TBufferBlobStreamingService'),
0007     appendToDataLabel = cms.string(''),
0008     toGet = cms.VPSet(cms.PSet(
0009         record = cms.string('SiStripNoisesRcd'),
0010         tag = cms.string('SiStripFakeNoise')
0011     ))
0012 )
0013 
0014