CMS 3D CMS Logo

SiStripDelayESProducer_cfi.py
Go to the documentation of this file.
1 # -*- coding: utf-8 -*-
2 import FWCore.ParameterSet.Config as cms
3 
4 siStripDelayESProducer = cms.ESProducer("SiStripDelayESProducer",
5  ListOfRecordToMerge = cms.VPSet(
6  cms.PSet(
7  Record = cms.string("SiStripBaseDelayRcd"),
8  Label = cms.string("baseDelay1"),
9  SumSign = cms.int32(1)
10  ),
11  cms.PSet(
12  Record = cms.string("SiStripBaseDelayRcd"),
13  Label = cms.string("baseDelay2"),
14  SumSign = cms.int32(-1)
15  )
16  )
17 )