00001 import FWCore.ParameterSet.Config as cms 00002 00003 # The CMS geometry files 00004 # Pilot 2 geometry doesn't contain the preshower 00005 from Configuration.StandardSequences.GeometryPilot2_cff import * 00006 00007 # To use the "full" CMS geometry, comment the prevous line, and uncomment the following one: 00008 #from Configuration.StandardSequences.Geometry_cff import * 00009 00010 # The tracker geometry left-over (for aligned/misaligned geometry) 00011 # The goemetry used for reconstruction must not be misaligned. 00012 TrackerDigiGeometryESModule.applyAlignment = False 00013 # Create a misaligned geometry for simulation 00014 misalignedTrackerGeometry = geometry.TrackerGeometryBuilder.trackerGeometry_cfi.TrackerDigiGeometryESModule.clone() 00015 # The misalignment is not applied by default 00016 misalignedTrackerGeometry.applyAlignment = False 00017 # Label of the produced trackerGeometry: 00018 misalignedTrackerGeometry.appendToDataLabel = 'MisAligned' 00019 00020 # Reconstruction and Interaction tracker geometries 00021 from FastSimulation.Configuration.TrackerRecoGeometryESProducer_cfi import * 00022 from FastSimulation.TrackerSetup.TrackerInteractionGeometryESProducer_cfi import * 00023 00024 # The Calo geometry service model left-over 00025 from geometry.CaloEventSetup.CaloTopology_cfi import * 00026 00027 # The muon geometry left-over 00028 from RecoMuon.DetLayers.muonDetLayerGeometry_cfi import *