CMS 3D CMS Logo

cscGeometryOrcaCompare_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #------------------------------------------------------------
4 # This cfi is a special version for use only when comparing
5 # with old orca simulations in which the real csc wire
6 # geometry was not modelled. this is flagged by the setting
7 # useRealWireGeometry=false
8 #
9 # This was the case for 'most' simulation performed with orca.
10 #
11 # You'll also need an appropriate cscSpecs.xml file:
12 # Geometry/CSCGeometryBuilder/data/cscSpecsOldOrca.xml
13 # in place of the default version.
14 #------------------------------------------------------------
15 #
16 # This cfi should be included to build the CSC geometry model.
17 #
18 CSCGeometryESModule = cms.ESProducer("CSCGeometryESModule",
19  useOnlyWiresInME1a = cms.bool(False),
20  useRealWireGeometry = cms.bool(False),
21  useRadialStrips = cms.bool(True),
22  useGangedStripsInME1a = cms.bool(True),
23  applyAlignment = cms.untracked.bool(False)
24 )
25 
26