Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #------------------------------------------------------------
0004 # This cfi is a special version for use only when comparing
0005 # with old orca simulations in which the real csc wire
0006 # geometry was not modelled. this is flagged by the setting
0007 # useRealWireGeometry=false
0008 #
0009 # This was the case for 'most' simulation performed with orca.
0010 #
0011 # You'll also need an appropriate cscSpecs.xml file:
0012 # Geometry/CSCGeometryBuilder/data/cscSpecsOldOrca.xml
0013 # in place of the default version.
0014 #------------------------------------------------------------
0015 #
0016 # This cfi should be included to build the CSC geometry model.
0017 #
0018 CSCGeometryESModule = cms.ESProducer("CSCGeometryESModule",
0019     useOnlyWiresInME1a = cms.bool(False),
0020     useRealWireGeometry = cms.bool(False),
0021     useRadialStrips = cms.bool(True),
0022     useGangedStripsInME1a = cms.bool(True),
0023     applyAlignment = cms.untracked.bool(False)
0024 )
0025 
0026