File indexing completed on 2021-02-14 14:14:53
0001
0002 import FWCore.ParameterSet.Config as cms
0003
0004 siStripLorentzAngleDepESProducer = cms.ESProducer("SiStripLorentzAngleDepESProducer",
0005
0006 LatencyRecord = cms.PSet(
0007 record = cms.string('SiStripLatencyRcd'),
0008 label = cms.untracked.string('')
0009 ),
0010 LorentzAnglePeakMode = cms.PSet(
0011 record = cms.string('SiStripLorentzAngleRcd'),
0012 label = cms.untracked.string('peak')
0013 ),
0014 LorentzAngleDeconvMode = cms.PSet(
0015 record = cms.string('SiStripLorentzAngleRcd'),
0016 label = cms.untracked.string('deconvolution')
0017 )
0018
0019 )
0020
0021