Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:55:57

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from Alignment.APEEstimation.SectorBuilder_cfi import *
0004 
0005 
0006 
0007 ##
0008 ## Whole Subdetector
0009 ##
0010 
0011 Bpix = EmptySector.clone(
0012     name = 'Bpix',
0013     subdetId = [1],
0014 )
0015 
0016 BPIX = cms.VPSet(
0017     Bpix,
0018 )
0019 
0020 
0021 
0022 ##
0023 ## Separation of layers
0024 ##
0025 
0026 BpixLayer1 = Bpix.clone(
0027     name = 'BpixLayer1',
0028     layer = [1],
0029 )
0030 BpixLayer2 = Bpix.clone(
0031     name = 'BpixLayer2',
0032     layer = [2],
0033 )
0034 BpixLayer3 = Bpix.clone(
0035     name = 'BpixLayer3',
0036     layer = [3],
0037 )
0038 BpixLayer4 = Bpix.clone(
0039     name = 'BpixLayer4',
0040     layer = [4],
0041 )
0042 
0043 BPIXLayerSeparation = cms.VPSet(
0044     BpixLayer1,
0045     BpixLayer2,
0046     BpixLayer3,
0047     BpixLayer4,
0048 )
0049 
0050 
0051 
0052 ##
0053 ## Separation of layers + orientations
0054 ##
0055 
0056 BpixLayer1Out = BpixLayer1.clone(
0057     name = 'BpixLayer1Out',
0058     wDirection = [1],
0059 )
0060 BpixLayer1In = BpixLayer1.clone(
0061     name = 'BpixLayer1In',
0062     wDirection = [-1],
0063 )
0064 BpixLayer2Out = BpixLayer2.clone(
0065     name = 'BpixLayer2Out',
0066     wDirection = [1],
0067 )
0068 BpixLayer2In = BpixLayer2.clone(
0069     name = 'BpixLayer2In',
0070     wDirection = [-1],
0071 )
0072 BpixLayer3Out = BpixLayer3.clone(
0073     name = 'BpixLayer3Out',
0074     wDirection = [1],
0075 )
0076 BpixLayer3In = BpixLayer3.clone(
0077     name = 'BpixLayer3In',
0078     wDirection = [-1],
0079 )
0080 BpixLayer4Out = BpixLayer4.clone(
0081     name = 'BpixLayer4Out',
0082     wDirection = [1],
0083 )
0084 BpixLayer4In = BpixLayer4.clone(
0085     name = 'BpixLayer4In',
0086     wDirection = [-1],
0087 )
0088 
0089 BPIXLayerAndOrientationSeparation = cms.VPSet(
0090     BpixLayer1Out,
0091     BpixLayer1In,
0092     BpixLayer2Out,
0093     BpixLayer2In,
0094     BpixLayer3Out,
0095     BpixLayer3In,
0096     BpixLayer4Out,
0097     BpixLayer4In,
0098 )
0099 
0100 
0101 
0102 
0103 
0104 
0105 
0106 
0107 
0108 
0109 
0110 
0111 
0112