Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:14:26

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #
0004 # This cfi should be included to build the CSC geometry model.
0005 #
0006 # modelling flags (for completeness - internal defaults are already sane)
0007 # GF would like to have a shorter name (e.g. CSCGeometry), but since originally
0008 # there was no name, replace statements in other configs would not work anymore...
0009 CSCGeometryESModule = cms.ESProducer("CSCGeometryESModule",
0010   fromDDD = cms.bool(False),
0011   fromDD4hep = cms.bool(False),
0012   alignmentsLabel = cms.string(''),
0013   appendToDataLabel = cms.string(''),
0014   useRealWireGeometry = cms.bool(True),
0015   useOnlyWiresInME1a = cms.bool(False),
0016   useGangedStripsInME1a = cms.bool(True),
0017   useCentreTIOffsets = cms.bool(False),
0018   applyAlignment = cms.bool(True),  ## GF: to be abandoned
0019   debugV = cms.untracked.bool(False)
0020 )
0021 
0022 #
0023 # Modify for running in run 2
0024 #
0025 from Configuration.Eras.Modifier_run2_common_cff import run2_common
0026 run2_common.toModify( CSCGeometryESModule, useGangedStripsInME1a=False )