Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # The CMS Geometry files
0004 # Pilot 2 geometry doesn't contain the preshower
0005 #from Configuration.StandardSequences.GeometryPilot2_cff import *
0006 
0007 # To use the "full" CMS geometry, comment the prevous line, and uncomment the following one:
0008 #####from Configuration.StandardSequences.Geometry_cff import *
0009 from Configuration.Geometry.GeometrySLHC_cff import *
0010 
0011 # The tracker geometry left-over (for aligned/misaligned geometry)
0012 # The goemetry used for reconstruction must not be misaligned.
0013 trackerSLHCGeometry.applyAlignment = False
0014 # Create a misaligned geometry for simulation
0015 misalignedTrackerGeometry = Geometry.TrackerGeometryBuilder.trackerSLHCGeometry_cfi.trackerSLHCGeometry.clone()
0016 # The misalignment is not applied by default
0017 misalignedTrackerGeometry.applyAlignment = False
0018 # Label of the produced TrackerGeometry:
0019 misalignedTrackerGeometry.appendToDataLabel = 'MisAligned'
0020 
0021 # The DT geometry left-over (for aligned/misaligned geometry)
0022 # The geometry used for reconstruction must not be misaligned.
0023 DTGeometryESModule.applyAlignment = False
0024 # Create a misaligned geometry for simulation
0025 misalignedDTGeometry = Geometry.DTGeometryBuilder.dtGeometry_cfi.DTGeometryESModule.clone()
0026 # The misalignment is not applied by default
0027 misalignedDTGeometry.applyAlignment = False
0028 # Label of the produced DTGeometry:
0029 misalignedDTGeometry.appendToDataLabel = 'MisAligned'
0030 
0031 # The CSC geometry left-over (for aligned/misaligned geometry)
0032 # The geometry used for reconstruction must not be misaligned.
0033 CSCGeometryESModule.applyAlignment = False
0034 # Create a misaligned geometry for simulation
0035 misalignedCSCGeometry = Geometry.CSCGeometryBuilder.cscGeometry_cfi.CSCGeometryESModule.clone()
0036 # The misalignment is not applied by default
0037 misalignedCSCGeometry.applyAlignment = False
0038 # Label of the produced CSCGeometry:
0039 misalignedCSCGeometry.appendToDataLabel = 'MisAligned'
0040 
0041 
0042 
0043 # Reconstruction and Interaction tracker geometries
0044 from FastSimulation.Configuration.TrackerRecoGeometryESProducer_cfi import *
0045 from FastSimulation.TrackerSetup.TrackerInteractionGeometryESProducer_cfi import *
0046 
0047 # The Calo geometry service model left-over
0048 from Geometry.CaloEventSetup.CaloTopology_cfi import *
0049 
0050 # The muon geometry left-over
0051 from RecoMuon.DetLayers.muonDetLayerGeometry_cfi import *