File indexing completed on 2025-02-07 14:24:08
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def Phase2StripCPEESProducer(*args, **kwargs):
0004 mod = cms.ESProducer('Phase2StripCPEESProducer',
0005 ComponentType = cms.string('Phase2StripCPE'),
0006 parameters = cms.PSet(
0007 TanLorentzAnglePerTesla = cms.double(0.07),
0008 LorentzAngle_DB = cms.bool(True)
0009 ),
0010 appendToDataLabel = cms.string('')
0011 )
0012 for a in args:
0013 mod.update_(a)
0014 mod.update_(kwargs)
0015 return mod