|
||||
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.StandardSequences.GeometryDB_cff import * 0010 0011 0012 # The tracker geometry left-over (for aligned/misaligned geometry) 0013 # The goemetry used for reconstruction must not be misaligned. 0014 trackerGeometryDB.applyAlignment = False 0015 # Create a misaligned geometry for simulation 0016 misalignedTrackerGeometry = Geometry.TrackerGeometryBuilder.trackerGeometryDB_cfi.trackerGeometryDB.clone() 0017 # The misalignment is not applied by default 0018 misalignedTrackerGeometry.applyAlignment = False 0019 # Label of the produced TrackerGeometry: 0020 misalignedTrackerGeometry.appendToDataLabel = 'MisAligned' 0021 0022 # The DT geometry left-over (for aligned/misaligned geometry) 0023 # The geometry used for reconstruction must not be misaligned. 0024 DTGeometryESModule.applyAlignment = False 0025 # Create a misaligned geometry for simulation 0026 misalignedDTGeometry = Geometry.DTGeometryBuilder.dtGeometryDB_cfi.DTGeometryESModule.clone() 0027 # The misalignment is not applied by default 0028 misalignedDTGeometry.applyAlignment = False 0029 # Label of the produced DTGeometry: 0030 misalignedDTGeometry.appendToDataLabel = 'MisAligned' 0031 0032 # The CSC geometry left-over (for aligned/misaligned geometry) 0033 # The geometry used for reconstruction must not be misaligned. 0034 CSCGeometryESModule.applyAlignment = False 0035 # Create a misaligned geometry for simulation 0036 misalignedCSCGeometry = Geometry.CSCGeometryBuilder.cscGeometryDB_cfi.CSCGeometryESModule.clone() 0037 # The misalignment is not applied by default 0038 misalignedCSCGeometry.applyAlignment = False 0039 # Label of the produced CSCGeometry: 0040 misalignedCSCGeometry.appendToDataLabel = 'MisAligned' 0041 0042 0043 0044 # Reconstruction and Interaction tracker geometries 0045 from FastSimulation.Configuration.TrackerRecoGeometryESProducer_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 *
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |