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
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
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
0039 BPIXLayerSeparation = cms.VPSet(
0040 BpixLayer1,
0041 BpixLayer2,
0042 BpixLayer3,
0043 )
0044
0045
0046
0047
0048
0049
0050
0051 BpixLayer1Out = BpixLayer1.clone(
0052 name = 'BpixLayer1Out',
0053 wDirection = [1],
0054 )
0055 BpixLayer1In = BpixLayer1.clone(
0056 name = 'BpixLayer1In',
0057 wDirection = [-1],
0058 )
0059 BpixLayer2Out = BpixLayer2.clone(
0060 name = 'BpixLayer2Out',
0061 wDirection = [1],
0062 )
0063 BpixLayer2In = BpixLayer2.clone(
0064 name = 'BpixLayer2In',
0065 wDirection = [-1],
0066 )
0067 BpixLayer3Out = BpixLayer3.clone(
0068 name = 'BpixLayer3Out',
0069 wDirection = [1],
0070 )
0071 BpixLayer3In = BpixLayer3.clone(
0072 name = 'BpixLayer3In',
0073 wDirection = [-1],
0074 )
0075
0076 BPIXLayerAndOrientationSeparation = cms.VPSet(
0077 BpixLayer1Out,
0078 BpixLayer1In,
0079 BpixLayer2Out,
0080 BpixLayer2In,
0081 BpixLayer3Out,
0082 BpixLayer3In,
0083 )
0084
0085
0086
0087
0088
0089
0090
0091
0092
0093
0094
0095
0096
0097