Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:15

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 import Geometry.MTDGeometryBuilder.mtdGeometry_cfi
0004 #
0005 # This cff provides a TrackerGeometry with the label 'idealForDigi' that is for sure matching
0006 # the ideal one and thus should be used in the digitisers.
0007 #
0008 idealForDigiMTDGeometry = Geometry.MTDGeometryBuilder.mtdGeometry_cfi.mtdGeometry.clone()
0009 # The es_module providing fake (i.e. empty) alignment constants:
0010 from Alignment.CommonAlignmentProducer.fakeForIdealAlignmentProducer_cfi import *
0011 # need to set to False, see below:
0012 idealForDigiMTDGeometry.applyAlignment = False
0013 # Label of the produced TrackerGeometry:
0014 idealForDigiMTDGeometry.appendToDataLabel = 'idealForDigi'
0015 # Alignments are looked for with this label:
0016 idealForDigiMTDGeometry.alignmentsLabel = 'fakeForIdeal'