CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Geometries_SLHC_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # The CMS Geometry files
4 # Pilot 2 geometry doesn't contain the preshower
5 #from Configuration.StandardSequences.GeometryPilot2_cff import *
6 
7 # To use the "full" CMS geometry, comment the prevous line, and uncomment the following one:
8 #####from Configuration.StandardSequences.Geometry_cff import *
10 
11 # The tracker geometry left-over (for aligned/misaligned geometry)
12 # The goemetry used for reconstruction must not be misaligned.
13 trackerSLHCGeometry.applyAlignment = False
14 # Create a misaligned geometry for simulation
15 misalignedTrackerGeometry = Geometry.TrackerGeometryBuilder.trackerSLHCGeometry_cfi.trackerSLHCGeometry.clone()
16 # The misalignment is not applied by default
17 misalignedTrackerGeometry.applyAlignment = False
18 # Label of the produced TrackerGeometry:
19 misalignedTrackerGeometry.appendToDataLabel = 'MisAligned'
20 
21 # The DT geometry left-over (for aligned/misaligned geometry)
22 # The geometry used for reconstruction must not be misaligned.
23 DTGeometryESModule.applyAlignment = False
24 # Create a misaligned geometry for simulation
25 misalignedDTGeometry = Geometry.DTGeometryBuilder.dtGeometry_cfi.DTGeometryESModule.clone()
26 # The misalignment is not applied by default
27 misalignedDTGeometry.applyAlignment = False
28 # Label of the produced DTGeometry:
29 misalignedDTGeometry.appendToDataLabel = 'MisAligned'
30 
31 # The CSC geometry left-over (for aligned/misaligned geometry)
32 # The geometry used for reconstruction must not be misaligned.
33 CSCGeometryESModule.applyAlignment = False
34 # Create a misaligned geometry for simulation
35 misalignedCSCGeometry = Geometry.CSCGeometryBuilder.cscGeometry_cfi.CSCGeometryESModule.clone()
36 # The misalignment is not applied by default
37 misalignedCSCGeometry.applyAlignment = False
38 # Label of the produced CSCGeometry:
39 misalignedCSCGeometry.appendToDataLabel = 'MisAligned'
40 
41 
42 
43 # Reconstruction and Interaction tracker geometries
46 
47 # The Calo geometry service model left-over
49 
50 # The muon geometry left-over
from Configuration.StandardSequences.Geometry_cff import *