File indexing completed on 2025-02-07 14:23:49
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def CSCGeometryESModule(*args, **kwargs):
0004 mod = cms.ESProducer('CSCGeometryESModule',
0005 fromDDD = cms.bool(True),
0006 fromDD4hep = cms.bool(False),
0007 alignmentsLabel = cms.string(''),
0008 appendToDataLabel = cms.string(''),
0009 useRealWireGeometry = cms.bool(True),
0010 useOnlyWiresInME1a = cms.bool(False),
0011 useGangedStripsInME1a = cms.bool(True),
0012 useCentreTIOffsets = cms.bool(False),
0013 applyAlignment = cms.bool(True),
0014 debugV = cms.untracked.bool(False)
0015 )
0016 for a in args:
0017 mod.update_(a)
0018 mod.update_(kwargs)
0019 return mod