File indexing completed on 2025-04-08 03:34:11
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def SkippingLayerCosmicNavigationSchoolESProducer(*args, **kwargs):
0004 mod = cms.ESProducer('SkippingLayerCosmicNavigationSchoolESProducer',
0005 ComponentName = cms.string('CosmicNavigationSchool'),
0006 noPXB = cms.bool(False),
0007 noPXF = cms.bool(False),
0008 noTIB = cms.bool(False),
0009 noTID = cms.bool(False),
0010 noTOB = cms.bool(False),
0011 noTEC = cms.bool(False),
0012 selfSearch = cms.bool(True),
0013 allSelf = cms.bool(True),
0014 appendToDataLabel = cms.string('')
0015 )
0016 for a in args:
0017 mod.update_(a)
0018 mod.update_(kwargs)
0019 return mod