Coverage for decam/camGeom/camera.py : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1import lsst.afw.cameraGeom.cameraConfig
2assert type(config) == lsst.afw.cameraGeom.cameraConfig.CameraConfig, 'config is of type %s.%s instead of lsst.afw.cameraGeom.cameraConfig.CameraConfig' % (
3 type(config).__module__, type(config).__name__)
4# Plate scale of the camera in arcsec/mm
5config.plateScale = 17.575
7# Name of native coordinate system
8config.transformDict.nativeSys = 'FocalPlane'
10config.transformDict.transforms = {}
11config.transformDict.transforms['FieldAngle'] = lsst.afw.geom.transformConfig.TransformConfig()
12config.transformDict.transforms['FieldAngle'].transform['multi'].transformDict = None
13# x, y translation vector
14config.transformDict.transforms['FieldAngle'].transform['affine'].translation = [0.0, 0.0]
16# 2x2 linear matrix in the usual numpy order;
17# to rotate a vector by theta use: cos(theta), sin(theta), -sin(theta), cos(theta)
18config.transformDict.transforms['FieldAngle'].transform['affine'].linear = [1.0, 0.0, 0.0, 1.0]
20# Coefficients for the radial polynomial; coeff[0] must be 0
21config.transformDict.transforms['FieldAngle'].transform['radial'].coeffs = [
22 0.0, 8.516497674138379e-05, 0.0, -4.501399132955917e-12]
24config.transformDict.transforms['FieldAngle'].transform.name = 'radial'
25config.detectorList = {}
26config.detectorList[0] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
27# y0 of pixel bounding box
28config.detectorList[0].bbox_y0 = 0
30# y1 of pixel bounding box
31config.detectorList[0].bbox_y1 = 4095
33# x1 of pixel bounding box
34config.detectorList[0].bbox_x1 = 2047
36# x0 of pixel bounding box
37config.detectorList[0].bbox_x0 = 0
39# Name of detector slot
40config.detectorList[0].name = 'S29'
42# Pixel size in the x dimension in mm
43config.detectorList[0].pixelSize_x = 0.015
45# Name of native coordinate system
46config.detectorList[0].transformDict.nativeSys = 'Pixels'
48config.detectorList[0].transformDict.transforms = None
49# x position of the reference point in the detector in pixels in transposed coordinates.
50config.detectorList[0].refpos_x = 1023.5
52# y position of the reference point in the detector in pixels in transposed coordinates.
53config.detectorList[0].refpos_y = 2047.5
55# Pixel size in the y dimension in mm
56config.detectorList[0].pixelSize_y = 0.015
58# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
59config.detectorList[0].detectorType = 0
61# x offset from the origin of the camera in mm in the transposed system.
62config.detectorList[0].offset_x = -185.59199999999998
64# y offset from the origin of the camera in mm in the transposed system.
65config.detectorList[0].offset_y = -63.748000000000005
67# Transpose the pixel grid before orienting in focal plane?
68config.detectorList[0].transposeDetector = False
70# yaw (rotation about z) of the detector in degrees. This includes any
71# necessary rotation to go from detector coordinates to camera coordinates
72# after optional transposition.
73config.detectorList[0].yawDeg = -0.01
75# roll (rotation about x) of the detector in degrees
76config.detectorList[0].rollDeg = 0.0
78# Serial string associated with this specific detector
79config.detectorList[0].serial = '1'
81# pitch (rotation about y) of the detector in degrees
82config.detectorList[0].pitchDeg = 0.0
84# ID of detector slot
85config.detectorList[0].id = 1
87config.detectorList[1] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
88# y0 of pixel bounding box
89config.detectorList[1].bbox_y0 = 0
91# y1 of pixel bounding box
92config.detectorList[1].bbox_y1 = 4095
94# x1 of pixel bounding box
95config.detectorList[1].bbox_x1 = 2047
97# x0 of pixel bounding box
98config.detectorList[1].bbox_x0 = 0
100# Name of detector slot
101config.detectorList[1].name = 'S30'
103# Pixel size in the x dimension in mm
104config.detectorList[1].pixelSize_x = 0.015
106# Name of native coordinate system
107config.detectorList[1].transformDict.nativeSys = 'Pixels'
109config.detectorList[1].transformDict.transforms = None
110# x position of the reference point in the detector in pixels in transposed coordinates.
111config.detectorList[1].refpos_x = 1023.5
113# y position of the reference point in the detector in pixels in transposed coordinates.
114config.detectorList[1].refpos_y = 2047.5
116# Pixel size in the y dimension in mm
117config.detectorList[1].pixelSize_y = 0.015
119# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
120config.detectorList[1].detectorType = 0
122# x offset from the origin of the camera in mm in the transposed system.
123config.detectorList[1].offset_x = -185.54199999999997
125# y offset from the origin of the camera in mm in the transposed system.
126config.detectorList[1].offset_y = -0.023999999999999133
128# Transpose the pixel grid before orienting in focal plane?
129config.detectorList[1].transposeDetector = False
131# yaw (rotation about z) of the detector in degrees. This includes any
132# necessary rotation to go from detector coordinates to camera coordinates
133# after optional transposition.
134config.detectorList[1].yawDeg = -0.105
136# roll (rotation about x) of the detector in degrees
137config.detectorList[1].rollDeg = 0.0
139# Serial string associated with this specific detector
140config.detectorList[1].serial = '2'
142# pitch (rotation about y) of the detector in degrees
143config.detectorList[1].pitchDeg = 0.0
145# ID of detector slot
146config.detectorList[1].id = 2
148config.detectorList[2] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
149# y0 of pixel bounding box
150config.detectorList[2].bbox_y0 = 0
152# y1 of pixel bounding box
153config.detectorList[2].bbox_y1 = 4095
155# x1 of pixel bounding box
156config.detectorList[2].bbox_x1 = 2047
158# x0 of pixel bounding box
159config.detectorList[2].bbox_x0 = 0
161# Name of detector slot
162config.detectorList[2].name = 'S31'
164# Pixel size in the x dimension in mm
165config.detectorList[2].pixelSize_x = 0.015
167# Name of native coordinate system
168config.detectorList[2].transformDict.nativeSys = 'Pixels'
170config.detectorList[2].transformDict.transforms = None
171# x position of the reference point in the detector in pixels in transposed coordinates.
172config.detectorList[2].refpos_x = 1023.5
174# y position of the reference point in the detector in pixels in transposed coordinates.
175config.detectorList[2].refpos_y = 2047.5
177# Pixel size in the y dimension in mm
178config.detectorList[2].pixelSize_y = 0.015
180# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
181config.detectorList[2].detectorType = 0
183# x offset from the origin of the camera in mm in the transposed system.
184config.detectorList[2].offset_x = -185.618
186# y offset from the origin of the camera in mm in the transposed system.
187config.detectorList[2].offset_y = 63.775999999999996
189# Transpose the pixel grid before orienting in focal plane?
190config.detectorList[2].transposeDetector = False
192# yaw (rotation about z) of the detector in degrees. This includes any
193# necessary rotation to go from detector coordinates to camera coordinates
194# after optional transposition.
195config.detectorList[2].yawDeg = -0.0
197# roll (rotation about x) of the detector in degrees
198config.detectorList[2].rollDeg = 0.0
200# Serial string associated with this specific detector
201config.detectorList[2].serial = '3'
203# pitch (rotation about y) of the detector in degrees
204config.detectorList[2].pitchDeg = 0.0
206# ID of detector slot
207config.detectorList[2].id = 3
209config.detectorList[3] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
210# y0 of pixel bounding box
211config.detectorList[3].bbox_y0 = 0
213# y1 of pixel bounding box
214config.detectorList[3].bbox_y1 = 4095
216# x1 of pixel bounding box
217config.detectorList[3].bbox_x1 = 2047
219# x0 of pixel bounding box
220config.detectorList[3].bbox_x0 = 0
222# Name of detector slot
223config.detectorList[3].name = 'S25'
225# Pixel size in the x dimension in mm
226config.detectorList[3].pixelSize_x = 0.015
228# Name of native coordinate system
229config.detectorList[3].transformDict.nativeSys = 'Pixels'
231config.detectorList[3].transformDict.transforms = None
232# x position of the reference point in the detector in pixels in transposed coordinates.
233config.detectorList[3].refpos_x = 1023.5
235# y position of the reference point in the detector in pixels in transposed coordinates.
236config.detectorList[3].refpos_y = 2047.5
238# Pixel size in the y dimension in mm
239config.detectorList[3].pixelSize_y = 0.015
241# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
242config.detectorList[3].detectorType = 0
244# x offset from the origin of the camera in mm in the transposed system.
245config.detectorList[3].offset_x = -151.832
247# y offset from the origin of the camera in mm in the transposed system.
248config.detectorList[3].offset_y = -95.611
250# Transpose the pixel grid before orienting in focal plane?
251config.detectorList[3].transposeDetector = False
253# yaw (rotation about z) of the detector in degrees. This includes any
254# necessary rotation to go from detector coordinates to camera coordinates
255# after optional transposition.
256config.detectorList[3].yawDeg = -0.004
258# roll (rotation about x) of the detector in degrees
259config.detectorList[3].rollDeg = 0.0
261# Serial string associated with this specific detector
262config.detectorList[3].serial = '4'
264# pitch (rotation about y) of the detector in degrees
265config.detectorList[3].pitchDeg = 0.0
267# ID of detector slot
268config.detectorList[3].id = 4
270config.detectorList[4] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
271# y0 of pixel bounding box
272config.detectorList[4].bbox_y0 = 0
274# y1 of pixel bounding box
275config.detectorList[4].bbox_y1 = 4095
277# x1 of pixel bounding box
278config.detectorList[4].bbox_x1 = 2047
280# x0 of pixel bounding box
281config.detectorList[4].bbox_x0 = 0
283# Name of detector slot
284config.detectorList[4].name = 'S26'
286# Pixel size in the x dimension in mm
287config.detectorList[4].pixelSize_x = 0.015
289# Name of native coordinate system
290config.detectorList[4].transformDict.nativeSys = 'Pixels'
292config.detectorList[4].transformDict.transforms = None
293# x position of the reference point in the detector in pixels in transposed coordinates.
294config.detectorList[4].refpos_x = 1023.5
296# y position of the reference point in the detector in pixels in transposed coordinates.
297config.detectorList[4].refpos_y = 2047.5
299# Pixel size in the y dimension in mm
300config.detectorList[4].pixelSize_y = 0.015
302# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
303config.detectorList[4].detectorType = 0
305# x offset from the origin of the camera in mm in the transposed system.
306config.detectorList[4].offset_x = -151.87
308# y offset from the origin of the camera in mm in the transposed system.
309config.detectorList[4].offset_y = -31.869
311# Transpose the pixel grid before orienting in focal plane?
312config.detectorList[4].transposeDetector = False
314# yaw (rotation about z) of the detector in degrees. This includes any
315# necessary rotation to go from detector coordinates to camera coordinates
316# after optional transposition.
317config.detectorList[4].yawDeg = 0.025
319# roll (rotation about x) of the detector in degrees
320config.detectorList[4].rollDeg = 0.0
322# Serial string associated with this specific detector
323config.detectorList[4].serial = '5'
325# pitch (rotation about y) of the detector in degrees
326config.detectorList[4].pitchDeg = 0.0
328# ID of detector slot
329config.detectorList[4].id = 5
331config.detectorList[5] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
332# y0 of pixel bounding box
333config.detectorList[5].bbox_y0 = 0
335# y1 of pixel bounding box
336config.detectorList[5].bbox_y1 = 4095
338# x1 of pixel bounding box
339config.detectorList[5].bbox_x1 = 2047
341# x0 of pixel bounding box
342config.detectorList[5].bbox_x0 = 0
344# Name of detector slot
345config.detectorList[5].name = 'S27'
347# Pixel size in the x dimension in mm
348config.detectorList[5].pixelSize_x = 0.015
350# Name of native coordinate system
351config.detectorList[5].transformDict.nativeSys = 'Pixels'
353config.detectorList[5].transformDict.transforms = None
354# x position of the reference point in the detector in pixels in transposed coordinates.
355config.detectorList[5].refpos_x = 1023.5
357# y position of the reference point in the detector in pixels in transposed coordinates.
358config.detectorList[5].refpos_y = 2047.5
360# Pixel size in the y dimension in mm
361config.detectorList[5].pixelSize_y = 0.015
363# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
364config.detectorList[5].detectorType = 0
366# x offset from the origin of the camera in mm in the transposed system.
367config.detectorList[5].offset_x = -151.904
369# y offset from the origin of the camera in mm in the transposed system.
370config.detectorList[5].offset_y = 31.901
372# Transpose the pixel grid before orienting in focal plane?
373config.detectorList[5].transposeDetector = False
375# yaw (rotation about z) of the detector in degrees. This includes any
376# necessary rotation to go from detector coordinates to camera coordinates
377# after optional transposition.
378config.detectorList[5].yawDeg = -0.025
380# roll (rotation about x) of the detector in degrees
381config.detectorList[5].rollDeg = 0.0
383# Serial string associated with this specific detector
384config.detectorList[5].serial = '6'
386# pitch (rotation about y) of the detector in degrees
387config.detectorList[5].pitchDeg = 0.0
389# ID of detector slot
390config.detectorList[5].id = 6
392config.detectorList[6] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
393# y0 of pixel bounding box
394config.detectorList[6].bbox_y0 = 0
396# y1 of pixel bounding box
397config.detectorList[6].bbox_y1 = 4095
399# x1 of pixel bounding box
400config.detectorList[6].bbox_x1 = 2047
402# x0 of pixel bounding box
403config.detectorList[6].bbox_x0 = 0
405# Name of detector slot
406config.detectorList[6].name = 'S28'
408# Pixel size in the x dimension in mm
409config.detectorList[6].pixelSize_x = 0.015
411# Name of native coordinate system
412config.detectorList[6].transformDict.nativeSys = 'Pixels'
414config.detectorList[6].transformDict.transforms = None
415# x position of the reference point in the detector in pixels in transposed coordinates.
416config.detectorList[6].refpos_x = 1023.5
418# y position of the reference point in the detector in pixels in transposed coordinates.
419config.detectorList[6].refpos_y = 2047.5
421# Pixel size in the y dimension in mm
422config.detectorList[6].pixelSize_y = 0.015
424# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
425config.detectorList[6].detectorType = 0
427# x offset from the origin of the camera in mm in the transposed system.
428config.detectorList[6].offset_x = -151.85199999999998
430# y offset from the origin of the camera in mm in the transposed system.
431config.detectorList[6].offset_y = 95.595
433# Transpose the pixel grid before orienting in focal plane?
434config.detectorList[6].transposeDetector = False
436# yaw (rotation about z) of the detector in degrees. This includes any
437# necessary rotation to go from detector coordinates to camera coordinates
438# after optional transposition.
439config.detectorList[6].yawDeg = 0.004
441# roll (rotation about x) of the detector in degrees
442config.detectorList[6].rollDeg = 0.0
444# Serial string associated with this specific detector
445config.detectorList[6].serial = '7'
447# pitch (rotation about y) of the detector in degrees
448config.detectorList[6].pitchDeg = 0.0
450# ID of detector slot
451config.detectorList[6].id = 7
453config.detectorList[7] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
454# y0 of pixel bounding box
455config.detectorList[7].bbox_y0 = 0
457# y1 of pixel bounding box
458config.detectorList[7].bbox_y1 = 4095
460# x1 of pixel bounding box
461config.detectorList[7].bbox_x1 = 2047
463# x0 of pixel bounding box
464config.detectorList[7].bbox_x0 = 0
466# Name of detector slot
467config.detectorList[7].name = 'S20'
469# Pixel size in the x dimension in mm
470config.detectorList[7].pixelSize_x = 0.015
472# Name of native coordinate system
473config.detectorList[7].transformDict.nativeSys = 'Pixels'
475config.detectorList[7].transformDict.transforms = None
476# x position of the reference point in the detector in pixels in transposed coordinates.
477config.detectorList[7].refpos_x = 1023.5
479# y position of the reference point in the detector in pixels in transposed coordinates.
480config.detectorList[7].refpos_y = 2047.5
482# Pixel size in the y dimension in mm
483config.detectorList[7].pixelSize_y = 0.015
485# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
486config.detectorList[7].detectorType = 0
488# x offset from the origin of the camera in mm in the transposed system.
489config.detectorList[7].offset_x = -118.018
491# y offset from the origin of the camera in mm in the transposed system.
492config.detectorList[7].offset_y = -127.452
494# Transpose the pixel grid before orienting in focal plane?
495config.detectorList[7].transposeDetector = False
497# yaw (rotation about z) of the detector in degrees. This includes any
498# necessary rotation to go from detector coordinates to camera coordinates
499# after optional transposition.
500config.detectorList[7].yawDeg = 0.03
502# roll (rotation about x) of the detector in degrees
503config.detectorList[7].rollDeg = 0.0
505# Serial string associated with this specific detector
506config.detectorList[7].serial = '8'
508# pitch (rotation about y) of the detector in degrees
509config.detectorList[7].pitchDeg = 0.0
511# ID of detector slot
512config.detectorList[7].id = 8
514config.detectorList[8] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
515# y0 of pixel bounding box
516config.detectorList[8].bbox_y0 = 0
518# y1 of pixel bounding box
519config.detectorList[8].bbox_y1 = 4095
521# x1 of pixel bounding box
522config.detectorList[8].bbox_x1 = 2047
524# x0 of pixel bounding box
525config.detectorList[8].bbox_x0 = 0
527# Name of detector slot
528config.detectorList[8].name = 'S21'
530# Pixel size in the x dimension in mm
531config.detectorList[8].pixelSize_x = 0.015
533# Name of native coordinate system
534config.detectorList[8].transformDict.nativeSys = 'Pixels'
536config.detectorList[8].transformDict.transforms = None
537# x position of the reference point in the detector in pixels in transposed coordinates.
538config.detectorList[8].refpos_x = 1023.5
540# y position of the reference point in the detector in pixels in transposed coordinates.
541config.detectorList[8].refpos_y = 2047.5
543# Pixel size in the y dimension in mm
544config.detectorList[8].pixelSize_y = 0.015
546# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
547config.detectorList[8].detectorType = 0
549# x offset from the origin of the camera in mm in the transposed system.
550config.detectorList[8].offset_x = -118.166
552# y offset from the origin of the camera in mm in the transposed system.
553config.detectorList[8].offset_y = -63.738
555# Transpose the pixel grid before orienting in focal plane?
556config.detectorList[8].transposeDetector = False
558# yaw (rotation about z) of the detector in degrees. This includes any
559# necessary rotation to go from detector coordinates to camera coordinates
560# after optional transposition.
561config.detectorList[8].yawDeg = -0.02
563# roll (rotation about x) of the detector in degrees
564config.detectorList[8].rollDeg = 0.0
566# Serial string associated with this specific detector
567config.detectorList[8].serial = '9'
569# pitch (rotation about y) of the detector in degrees
570config.detectorList[8].pitchDeg = 0.0
572# ID of detector slot
573config.detectorList[8].id = 9
575config.detectorList[9] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
576# y0 of pixel bounding box
577config.detectorList[9].bbox_y0 = 0
579# y1 of pixel bounding box
580config.detectorList[9].bbox_y1 = 4095
582# x1 of pixel bounding box
583config.detectorList[9].bbox_x1 = 2047
585# x0 of pixel bounding box
586config.detectorList[9].bbox_x0 = 0
588# Name of detector slot
589config.detectorList[9].name = 'S22'
591# Pixel size in the x dimension in mm
592config.detectorList[9].pixelSize_x = 0.015
594# Name of native coordinate system
595config.detectorList[9].transformDict.nativeSys = 'Pixels'
597config.detectorList[9].transformDict.transforms = None
598# x position of the reference point in the detector in pixels in transposed coordinates.
599config.detectorList[9].refpos_x = 1023.5
601# y position of the reference point in the detector in pixels in transposed coordinates.
602config.detectorList[9].refpos_y = 2047.5
604# Pixel size in the y dimension in mm
605config.detectorList[9].pixelSize_y = 0.015
607# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
608config.detectorList[9].detectorType = 0
610# x offset from the origin of the camera in mm in the transposed system.
611config.detectorList[9].offset_x = -118.134
613# y offset from the origin of the camera in mm in the transposed system.
614config.detectorList[9].offset_y = 0.002000000000000668
616# Transpose the pixel grid before orienting in focal plane?
617config.detectorList[9].transposeDetector = False
619# yaw (rotation about z) of the detector in degrees. This includes any
620# necessary rotation to go from detector coordinates to camera coordinates
621# after optional transposition.
622config.detectorList[9].yawDeg = 0.006
624# roll (rotation about x) of the detector in degrees
625config.detectorList[9].rollDeg = 0.0
627# Serial string associated with this specific detector
628config.detectorList[9].serial = '10'
630# pitch (rotation about y) of the detector in degrees
631config.detectorList[9].pitchDeg = 0.0
633# ID of detector slot
634config.detectorList[9].id = 10
636config.detectorList[10] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
637# y0 of pixel bounding box
638config.detectorList[10].bbox_y0 = 0
640# y1 of pixel bounding box
641config.detectorList[10].bbox_y1 = 4095
643# x1 of pixel bounding box
644config.detectorList[10].bbox_x1 = 2047
646# x0 of pixel bounding box
647config.detectorList[10].bbox_x0 = 0
649# Name of detector slot
650config.detectorList[10].name = 'S23'
652# Pixel size in the x dimension in mm
653config.detectorList[10].pixelSize_x = 0.015
655# Name of native coordinate system
656config.detectorList[10].transformDict.nativeSys = 'Pixels'
658config.detectorList[10].transformDict.transforms = None
659# x position of the reference point in the detector in pixels in transposed coordinates.
660config.detectorList[10].refpos_x = 1023.5
662# y position of the reference point in the detector in pixels in transposed coordinates.
663config.detectorList[10].refpos_y = 2047.5
665# Pixel size in the y dimension in mm
666config.detectorList[10].pixelSize_y = 0.015
668# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
669config.detectorList[10].detectorType = 0
671# x offset from the origin of the camera in mm in the transposed system.
672config.detectorList[10].offset_x = -118.17399999999999
674# y offset from the origin of the camera in mm in the transposed system.
675config.detectorList[10].offset_y = 63.738
677# Transpose the pixel grid before orienting in focal plane?
678config.detectorList[10].transposeDetector = False
680# yaw (rotation about z) of the detector in degrees. This includes any
681# necessary rotation to go from detector coordinates to camera coordinates
682# after optional transposition.
683config.detectorList[10].yawDeg = -0.03
685# roll (rotation about x) of the detector in degrees
686config.detectorList[10].rollDeg = 0.0
688# Serial string associated with this specific detector
689config.detectorList[10].serial = '11'
691# pitch (rotation about y) of the detector in degrees
692config.detectorList[10].pitchDeg = 0.0
694# ID of detector slot
695config.detectorList[10].id = 11
697config.detectorList[11] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
698# y0 of pixel bounding box
699config.detectorList[11].bbox_y0 = 0
701# y1 of pixel bounding box
702config.detectorList[11].bbox_y1 = 4095
704# x1 of pixel bounding box
705config.detectorList[11].bbox_x1 = 2047
707# x0 of pixel bounding box
708config.detectorList[11].bbox_x0 = 0
710# Name of detector slot
711config.detectorList[11].name = 'S24'
713# Pixel size in the x dimension in mm
714config.detectorList[11].pixelSize_x = 0.015
716# Name of native coordinate system
717config.detectorList[11].transformDict.nativeSys = 'Pixels'
719config.detectorList[11].transformDict.transforms = None
720# x position of the reference point in the detector in pixels in transposed coordinates.
721config.detectorList[11].refpos_x = 1023.5
723# y position of the reference point in the detector in pixels in transposed coordinates.
724config.detectorList[11].refpos_y = 2047.5
726# Pixel size in the y dimension in mm
727config.detectorList[11].pixelSize_y = 0.015
729# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
730config.detectorList[11].detectorType = 0
732# x offset from the origin of the camera in mm in the transposed system.
733config.detectorList[11].offset_x = -118.086
735# y offset from the origin of the camera in mm in the transposed system.
736config.detectorList[11].offset_y = 127.48599999999999
738# Transpose the pixel grid before orienting in focal plane?
739config.detectorList[11].transposeDetector = False
741# yaw (rotation about z) of the detector in degrees. This includes any
742# necessary rotation to go from detector coordinates to camera coordinates
743# after optional transposition.
744config.detectorList[11].yawDeg = -0.027
746# roll (rotation about x) of the detector in degrees
747config.detectorList[11].rollDeg = 0.0
749# Serial string associated with this specific detector
750config.detectorList[11].serial = '12'
752# pitch (rotation about y) of the detector in degrees
753config.detectorList[11].pitchDeg = 0.0
755# ID of detector slot
756config.detectorList[11].id = 12
758config.detectorList[12] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
759# y0 of pixel bounding box
760config.detectorList[12].bbox_y0 = 0
762# y1 of pixel bounding box
763config.detectorList[12].bbox_y1 = 4095
765# x1 of pixel bounding box
766config.detectorList[12].bbox_x1 = 2047
768# x0 of pixel bounding box
769config.detectorList[12].bbox_x0 = 0
771# Name of detector slot
772config.detectorList[12].name = 'S14'
774# Pixel size in the x dimension in mm
775config.detectorList[12].pixelSize_x = 0.015
777# Name of native coordinate system
778config.detectorList[12].transformDict.nativeSys = 'Pixels'
780config.detectorList[12].transformDict.transforms = None
781# x position of the reference point in the detector in pixels in transposed coordinates.
782config.detectorList[12].refpos_x = 1023.5
784# y position of the reference point in the detector in pixels in transposed coordinates.
785config.detectorList[12].refpos_y = 2047.5
787# Pixel size in the y dimension in mm
788config.detectorList[12].pixelSize_y = 0.015
790# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
791config.detectorList[12].detectorType = 0
793# x offset from the origin of the camera in mm in the transposed system.
794config.detectorList[12].offset_x = -84.268
796# y offset from the origin of the camera in mm in the transposed system.
797config.detectorList[12].offset_y = -159.323
799# Transpose the pixel grid before orienting in focal plane?
800config.detectorList[12].transposeDetector = False
802# yaw (rotation about z) of the detector in degrees. This includes any
803# necessary rotation to go from detector coordinates to camera coordinates
804# after optional transposition.
805config.detectorList[12].yawDeg = -0.004
807# roll (rotation about x) of the detector in degrees
808config.detectorList[12].rollDeg = 0.0
810# Serial string associated with this specific detector
811config.detectorList[12].serial = '13'
813# pitch (rotation about y) of the detector in degrees
814config.detectorList[12].pitchDeg = 0.0
816# ID of detector slot
817config.detectorList[12].id = 13
819config.detectorList[13] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
820# y0 of pixel bounding box
821config.detectorList[13].bbox_y0 = 0
823# y1 of pixel bounding box
824config.detectorList[13].bbox_y1 = 4095
826# x1 of pixel bounding box
827config.detectorList[13].bbox_x1 = 2047
829# x0 of pixel bounding box
830config.detectorList[13].bbox_x0 = 0
832# Name of detector slot
833config.detectorList[13].name = 'S15'
835# Pixel size in the x dimension in mm
836config.detectorList[13].pixelSize_x = 0.015
838# Name of native coordinate system
839config.detectorList[13].transformDict.nativeSys = 'Pixels'
841config.detectorList[13].transformDict.transforms = None
842# x position of the reference point in the detector in pixels in transposed coordinates.
843config.detectorList[13].refpos_x = 1023.5
845# y position of the reference point in the detector in pixels in transposed coordinates.
846config.detectorList[13].refpos_y = 2047.5
848# Pixel size in the y dimension in mm
849config.detectorList[13].pixelSize_y = 0.015
851# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
852config.detectorList[13].detectorType = 0
854# x offset from the origin of the camera in mm in the transposed system.
855config.detectorList[13].offset_x = -84.38
857# y offset from the origin of the camera in mm in the transposed system.
858config.detectorList[13].offset_y = -95.689
860# Transpose the pixel grid before orienting in focal plane?
861config.detectorList[13].transposeDetector = False
863# yaw (rotation about z) of the detector in degrees. This includes any
864# necessary rotation to go from detector coordinates to camera coordinates
865# after optional transposition.
866config.detectorList[13].yawDeg = 0.01
868# roll (rotation about x) of the detector in degrees
869config.detectorList[13].rollDeg = 0.0
871# Serial string associated with this specific detector
872config.detectorList[13].serial = '14'
874# pitch (rotation about y) of the detector in degrees
875config.detectorList[13].pitchDeg = 0.0
877# ID of detector slot
878config.detectorList[13].id = 14
880config.detectorList[14] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
881# y0 of pixel bounding box
882config.detectorList[14].bbox_y0 = 0
884# y1 of pixel bounding box
885config.detectorList[14].bbox_y1 = 4095
887# x1 of pixel bounding box
888config.detectorList[14].bbox_x1 = 2047
890# x0 of pixel bounding box
891config.detectorList[14].bbox_x0 = 0
893# Name of detector slot
894config.detectorList[14].name = 'S16'
896# Pixel size in the x dimension in mm
897config.detectorList[14].pixelSize_x = 0.015
899# Name of native coordinate system
900config.detectorList[14].transformDict.nativeSys = 'Pixels'
902config.detectorList[14].transformDict.transforms = None
903# x position of the reference point in the detector in pixels in transposed coordinates.
904config.detectorList[14].refpos_x = 1023.5
906# y position of the reference point in the detector in pixels in transposed coordinates.
907config.detectorList[14].refpos_y = 2047.5
909# Pixel size in the y dimension in mm
910config.detectorList[14].pixelSize_y = 0.015
912# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
913config.detectorList[14].detectorType = 0
915# x offset from the origin of the camera in mm in the transposed system.
916config.detectorList[14].offset_x = -84.466
918# y offset from the origin of the camera in mm in the transposed system.
919config.detectorList[14].offset_y = -31.907
921# Transpose the pixel grid before orienting in focal plane?
922config.detectorList[14].transposeDetector = False
924# yaw (rotation about z) of the detector in degrees. This includes any
925# necessary rotation to go from detector coordinates to camera coordinates
926# after optional transposition.
927config.detectorList[14].yawDeg = 0.011
929# roll (rotation about x) of the detector in degrees
930config.detectorList[14].rollDeg = 0.0
932# Serial string associated with this specific detector
933config.detectorList[14].serial = '15'
935# pitch (rotation about y) of the detector in degrees
936config.detectorList[14].pitchDeg = 0.0
938# ID of detector slot
939config.detectorList[14].id = 15
941config.detectorList[15] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
942# y0 of pixel bounding box
943config.detectorList[15].bbox_y0 = 0
945# y1 of pixel bounding box
946config.detectorList[15].bbox_y1 = 4095
948# x1 of pixel bounding box
949config.detectorList[15].bbox_x1 = 2047
951# x0 of pixel bounding box
952config.detectorList[15].bbox_x0 = 0
954# Name of detector slot
955config.detectorList[15].name = 'S17'
957# Pixel size in the x dimension in mm
958config.detectorList[15].pixelSize_x = 0.015
960# Name of native coordinate system
961config.detectorList[15].transformDict.nativeSys = 'Pixels'
963config.detectorList[15].transformDict.transforms = None
964# x position of the reference point in the detector in pixels in transposed coordinates.
965config.detectorList[15].refpos_x = 1023.5
967# y position of the reference point in the detector in pixels in transposed coordinates.
968config.detectorList[15].refpos_y = 2047.5
970# Pixel size in the y dimension in mm
971config.detectorList[15].pixelSize_y = 0.015
973# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
974config.detectorList[15].detectorType = 0
976# x offset from the origin of the camera in mm in the transposed system.
977config.detectorList[15].offset_x = -84.384
979# y offset from the origin of the camera in mm in the transposed system.
980config.detectorList[15].offset_y = 31.891
982# Transpose the pixel grid before orienting in focal plane?
983config.detectorList[15].transposeDetector = False
985# yaw (rotation about z) of the detector in degrees. This includes any
986# necessary rotation to go from detector coordinates to camera coordinates
987# after optional transposition.
988config.detectorList[15].yawDeg = 0.008
990# roll (rotation about x) of the detector in degrees
991config.detectorList[15].rollDeg = 0.0
993# Serial string associated with this specific detector
994config.detectorList[15].serial = '16'
996# pitch (rotation about y) of the detector in degrees
997config.detectorList[15].pitchDeg = 0.0
999# ID of detector slot
1000config.detectorList[15].id = 16
1002config.detectorList[16] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1003# y0 of pixel bounding box
1004config.detectorList[16].bbox_y0 = 0
1006# y1 of pixel bounding box
1007config.detectorList[16].bbox_y1 = 4095
1009# x1 of pixel bounding box
1010config.detectorList[16].bbox_x1 = 2047
1012# x0 of pixel bounding box
1013config.detectorList[16].bbox_x0 = 0
1015# Name of detector slot
1016config.detectorList[16].name = 'S18'
1018# Pixel size in the x dimension in mm
1019config.detectorList[16].pixelSize_x = 0.015
1021# Name of native coordinate system
1022config.detectorList[16].transformDict.nativeSys = 'Pixels'
1024config.detectorList[16].transformDict.transforms = None
1025# x position of the reference point in the detector in pixels in transposed coordinates.
1026config.detectorList[16].refpos_x = 1023.5
1028# y position of the reference point in the detector in pixels in transposed coordinates.
1029config.detectorList[16].refpos_y = 2047.5
1031# Pixel size in the y dimension in mm
1032config.detectorList[16].pixelSize_y = 0.015
1034# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1035config.detectorList[16].detectorType = 0
1037# x offset from the origin of the camera in mm in the transposed system.
1038config.detectorList[16].offset_x = -84.46
1040# y offset from the origin of the camera in mm in the transposed system.
1041config.detectorList[16].offset_y = 95.663
1043# Transpose the pixel grid before orienting in focal plane?
1044config.detectorList[16].transposeDetector = False
1046# yaw (rotation about z) of the detector in degrees. This includes any
1047# necessary rotation to go from detector coordinates to camera coordinates
1048# after optional transposition.
1049config.detectorList[16].yawDeg = -0.04
1051# roll (rotation about x) of the detector in degrees
1052config.detectorList[16].rollDeg = 0.0
1054# Serial string associated with this specific detector
1055config.detectorList[16].serial = '17'
1057# pitch (rotation about y) of the detector in degrees
1058config.detectorList[16].pitchDeg = 0.0
1060# ID of detector slot
1061config.detectorList[16].id = 17
1063config.detectorList[17] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1064# y0 of pixel bounding box
1065config.detectorList[17].bbox_y0 = 0
1067# y1 of pixel bounding box
1068config.detectorList[17].bbox_y1 = 4095
1070# x1 of pixel bounding box
1071config.detectorList[17].bbox_x1 = 2047
1073# x0 of pixel bounding box
1074config.detectorList[17].bbox_x0 = 0
1076# Name of detector slot
1077config.detectorList[17].name = 'S19'
1079# Pixel size in the x dimension in mm
1080config.detectorList[17].pixelSize_x = 0.015
1082# Name of native coordinate system
1083config.detectorList[17].transformDict.nativeSys = 'Pixels'
1085config.detectorList[17].transformDict.transforms = None
1086# x position of the reference point in the detector in pixels in transposed coordinates.
1087config.detectorList[17].refpos_x = 1023.5
1089# y position of the reference point in the detector in pixels in transposed coordinates.
1090config.detectorList[17].refpos_y = 2047.5
1092# Pixel size in the y dimension in mm
1093config.detectorList[17].pixelSize_y = 0.015
1095# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1096config.detectorList[17].detectorType = 0
1098# x offset from the origin of the camera in mm in the transposed system.
1099config.detectorList[17].offset_x = -84.316
1101# y offset from the origin of the camera in mm in the transposed system.
1102config.detectorList[17].offset_y = 159.413
1104# Transpose the pixel grid before orienting in focal plane?
1105config.detectorList[17].transposeDetector = False
1107# yaw (rotation about z) of the detector in degrees. This includes any
1108# necessary rotation to go from detector coordinates to camera coordinates
1109# after optional transposition.
1110config.detectorList[17].yawDeg = 0.019
1112# roll (rotation about x) of the detector in degrees
1113config.detectorList[17].rollDeg = 0.0
1115# Serial string associated with this specific detector
1116config.detectorList[17].serial = '18'
1118# pitch (rotation about y) of the detector in degrees
1119config.detectorList[17].pitchDeg = 0.0
1121# ID of detector slot
1122config.detectorList[17].id = 18
1124config.detectorList[18] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1125# y0 of pixel bounding box
1126config.detectorList[18].bbox_y0 = 0
1128# y1 of pixel bounding box
1129config.detectorList[18].bbox_y1 = 4095
1131# x1 of pixel bounding box
1132config.detectorList[18].bbox_x1 = 2047
1134# x0 of pixel bounding box
1135config.detectorList[18].bbox_x0 = 0
1137# Name of detector slot
1138config.detectorList[18].name = 'S8'
1140# Pixel size in the x dimension in mm
1141config.detectorList[18].pixelSize_x = 0.015
1143# Name of native coordinate system
1144config.detectorList[18].transformDict.nativeSys = 'Pixels'
1146config.detectorList[18].transformDict.transforms = None
1147# x position of the reference point in the detector in pixels in transposed coordinates.
1148config.detectorList[18].refpos_x = 1023.5
1150# y position of the reference point in the detector in pixels in transposed coordinates.
1151config.detectorList[18].refpos_y = 2047.5
1153# Pixel size in the y dimension in mm
1154config.detectorList[18].pixelSize_y = 0.015
1156# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1157config.detectorList[18].detectorType = 0
1159# x offset from the origin of the camera in mm in the transposed system.
1160config.detectorList[18].offset_x = -50.620000000000005
1162# y offset from the origin of the camera in mm in the transposed system.
1163config.detectorList[18].offset_y = -159.277
1165# Transpose the pixel grid before orienting in focal plane?
1166config.detectorList[18].transposeDetector = False
1168# yaw (rotation about z) of the detector in degrees. This includes any
1169# necessary rotation to go from detector coordinates to camera coordinates
1170# after optional transposition.
1171config.detectorList[18].yawDeg = 0.016
1173# roll (rotation about x) of the detector in degrees
1174config.detectorList[18].rollDeg = 0.0
1176# Serial string associated with this specific detector
1177config.detectorList[18].serial = '19'
1179# pitch (rotation about y) of the detector in degrees
1180config.detectorList[18].pitchDeg = 0.0
1182# ID of detector slot
1183config.detectorList[18].id = 19
1185config.detectorList[19] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1186# y0 of pixel bounding box
1187config.detectorList[19].bbox_y0 = 0
1189# y1 of pixel bounding box
1190config.detectorList[19].bbox_y1 = 4095
1192# x1 of pixel bounding box
1193config.detectorList[19].bbox_x1 = 2047
1195# x0 of pixel bounding box
1196config.detectorList[19].bbox_x0 = 0
1198# Name of detector slot
1199config.detectorList[19].name = 'S9'
1201# Pixel size in the x dimension in mm
1202config.detectorList[19].pixelSize_x = 0.015
1204# Name of native coordinate system
1205config.detectorList[19].transformDict.nativeSys = 'Pixels'
1207config.detectorList[19].transformDict.transforms = None
1208# x position of the reference point in the detector in pixels in transposed coordinates.
1209config.detectorList[19].refpos_x = 1023.5
1211# y position of the reference point in the detector in pixels in transposed coordinates.
1212config.detectorList[19].refpos_y = 2047.5
1214# Pixel size in the y dimension in mm
1215config.detectorList[19].pixelSize_y = 0.015
1217# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1218config.detectorList[19].detectorType = 0
1220# x offset from the origin of the camera in mm in the transposed system.
1221config.detectorList[19].offset_x = -50.596000000000004
1223# y offset from the origin of the camera in mm in the transposed system.
1224config.detectorList[19].offset_y = -95.689
1226# Transpose the pixel grid before orienting in focal plane?
1227config.detectorList[19].transposeDetector = False
1229# yaw (rotation about z) of the detector in degrees. This includes any
1230# necessary rotation to go from detector coordinates to camera coordinates
1231# after optional transposition.
1232config.detectorList[19].yawDeg = -0.001
1234# roll (rotation about x) of the detector in degrees
1235config.detectorList[19].rollDeg = 0.0
1237# Serial string associated with this specific detector
1238config.detectorList[19].serial = '20'
1240# pitch (rotation about y) of the detector in degrees
1241config.detectorList[19].pitchDeg = 0.0
1243# ID of detector slot
1244config.detectorList[19].id = 20
1246config.detectorList[20] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1247# y0 of pixel bounding box
1248config.detectorList[20].bbox_y0 = 0
1250# y1 of pixel bounding box
1251config.detectorList[20].bbox_y1 = 4095
1253# x1 of pixel bounding box
1254config.detectorList[20].bbox_x1 = 2047
1256# x0 of pixel bounding box
1257config.detectorList[20].bbox_x0 = 0
1259# Name of detector slot
1260config.detectorList[20].name = 'S10'
1262# Pixel size in the x dimension in mm
1263config.detectorList[20].pixelSize_x = 0.015
1265# Name of native coordinate system
1266config.detectorList[20].transformDict.nativeSys = 'Pixels'
1268config.detectorList[20].transformDict.transforms = None
1269# x position of the reference point in the detector in pixels in transposed coordinates.
1270config.detectorList[20].refpos_x = 1023.5
1272# y position of the reference point in the detector in pixels in transposed coordinates.
1273config.detectorList[20].refpos_y = 2047.5
1275# Pixel size in the y dimension in mm
1276config.detectorList[20].pixelSize_y = 0.015
1278# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1279config.detectorList[20].detectorType = 0
1281# x offset from the origin of the camera in mm in the transposed system.
1282config.detectorList[20].offset_x = -50.7
1284# y offset from the origin of the camera in mm in the transposed system.
1285config.detectorList[20].offset_y = -31.931
1287# Transpose the pixel grid before orienting in focal plane?
1288config.detectorList[20].transposeDetector = False
1290# yaw (rotation about z) of the detector in degrees. This includes any
1291# necessary rotation to go from detector coordinates to camera coordinates
1292# after optional transposition.
1293config.detectorList[20].yawDeg = 0.007
1295# roll (rotation about x) of the detector in degrees
1296config.detectorList[20].rollDeg = 0.0
1298# Serial string associated with this specific detector
1299config.detectorList[20].serial = '21'
1301# pitch (rotation about y) of the detector in degrees
1302config.detectorList[20].pitchDeg = 0.0
1304# ID of detector slot
1305config.detectorList[20].id = 21
1307config.detectorList[21] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1308# y0 of pixel bounding box
1309config.detectorList[21].bbox_y0 = 0
1311# y1 of pixel bounding box
1312config.detectorList[21].bbox_y1 = 4095
1314# x1 of pixel bounding box
1315config.detectorList[21].bbox_x1 = 2047
1317# x0 of pixel bounding box
1318config.detectorList[21].bbox_x0 = 0
1320# Name of detector slot
1321config.detectorList[21].name = 'S11'
1323# Pixel size in the x dimension in mm
1324config.detectorList[21].pixelSize_x = 0.015
1326# Name of native coordinate system
1327config.detectorList[21].transformDict.nativeSys = 'Pixels'
1329config.detectorList[21].transformDict.transforms = None
1330# x position of the reference point in the detector in pixels in transposed coordinates.
1331config.detectorList[21].refpos_x = 1023.5
1333# y position of the reference point in the detector in pixels in transposed coordinates.
1334config.detectorList[21].refpos_y = 2047.5
1336# Pixel size in the y dimension in mm
1337config.detectorList[21].pixelSize_y = 0.015
1339# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1340config.detectorList[21].detectorType = 0
1342# x offset from the origin of the camera in mm in the transposed system.
1343config.detectorList[21].offset_x = -50.757999999999996
1345# y offset from the origin of the camera in mm in the transposed system.
1346config.detectorList[21].offset_y = 31.915
1348# Transpose the pixel grid before orienting in focal plane?
1349config.detectorList[21].transposeDetector = False
1351# yaw (rotation about z) of the detector in degrees. This includes any
1352# necessary rotation to go from detector coordinates to camera coordinates
1353# after optional transposition.
1354config.detectorList[21].yawDeg = -0.022
1356# roll (rotation about x) of the detector in degrees
1357config.detectorList[21].rollDeg = 0.0
1359# Serial string associated with this specific detector
1360config.detectorList[21].serial = '22'
1362# pitch (rotation about y) of the detector in degrees
1363config.detectorList[21].pitchDeg = 0.0
1365# ID of detector slot
1366config.detectorList[21].id = 22
1368config.detectorList[22] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1369# y0 of pixel bounding box
1370config.detectorList[22].bbox_y0 = 0
1372# y1 of pixel bounding box
1373config.detectorList[22].bbox_y1 = 4095
1375# x1 of pixel bounding box
1376config.detectorList[22].bbox_x1 = 2047
1378# x0 of pixel bounding box
1379config.detectorList[22].bbox_x0 = 0
1381# Name of detector slot
1382config.detectorList[22].name = 'S12'
1384# Pixel size in the x dimension in mm
1385config.detectorList[22].pixelSize_x = 0.015
1387# Name of native coordinate system
1388config.detectorList[22].transformDict.nativeSys = 'Pixels'
1390config.detectorList[22].transformDict.transforms = None
1391# x position of the reference point in the detector in pixels in transposed coordinates.
1392config.detectorList[22].refpos_x = 1023.5
1394# y position of the reference point in the detector in pixels in transposed coordinates.
1395config.detectorList[22].refpos_y = 2047.5
1397# Pixel size in the y dimension in mm
1398config.detectorList[22].pixelSize_y = 0.015
1400# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1401config.detectorList[22].detectorType = 0
1403# x offset from the origin of the camera in mm in the transposed system.
1404config.detectorList[22].offset_x = -50.69800000000001
1406# y offset from the origin of the camera in mm in the transposed system.
1407config.detectorList[22].offset_y = 95.761
1409# Transpose the pixel grid before orienting in focal plane?
1410config.detectorList[22].transposeDetector = False
1412# yaw (rotation about z) of the detector in degrees. This includes any
1413# necessary rotation to go from detector coordinates to camera coordinates
1414# after optional transposition.
1415config.detectorList[22].yawDeg = -0.022
1417# roll (rotation about x) of the detector in degrees
1418config.detectorList[22].rollDeg = 0.0
1420# Serial string associated with this specific detector
1421config.detectorList[22].serial = '23'
1423# pitch (rotation about y) of the detector in degrees
1424config.detectorList[22].pitchDeg = 0.0
1426# ID of detector slot
1427config.detectorList[22].id = 23
1429config.detectorList[23] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1430# y0 of pixel bounding box
1431config.detectorList[23].bbox_y0 = 0
1433# y1 of pixel bounding box
1434config.detectorList[23].bbox_y1 = 4095
1436# x1 of pixel bounding box
1437config.detectorList[23].bbox_x1 = 2047
1439# x0 of pixel bounding box
1440config.detectorList[23].bbox_x0 = 0
1442# Name of detector slot
1443config.detectorList[23].name = 'S13'
1445# Pixel size in the x dimension in mm
1446config.detectorList[23].pixelSize_x = 0.015
1448# Name of native coordinate system
1449config.detectorList[23].transformDict.nativeSys = 'Pixels'
1451config.detectorList[23].transformDict.transforms = None
1452# x position of the reference point in the detector in pixels in transposed coordinates.
1453config.detectorList[23].refpos_x = 1023.5
1455# y position of the reference point in the detector in pixels in transposed coordinates.
1456config.detectorList[23].refpos_y = 2047.5
1458# Pixel size in the y dimension in mm
1459config.detectorList[23].pixelSize_y = 0.015
1461# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1462config.detectorList[23].detectorType = 0
1464# x offset from the origin of the camera in mm in the transposed system.
1465config.detectorList[23].offset_x = -50.634
1467# y offset from the origin of the camera in mm in the transposed system.
1468config.detectorList[23].offset_y = 159.391
1470# Transpose the pixel grid before orienting in focal plane?
1471config.detectorList[23].transposeDetector = False
1473# yaw (rotation about z) of the detector in degrees. This includes any
1474# necessary rotation to go from detector coordinates to camera coordinates
1475# after optional transposition.
1476config.detectorList[23].yawDeg = -0.016
1478# roll (rotation about x) of the detector in degrees
1479config.detectorList[23].rollDeg = 0.0
1481# Serial string associated with this specific detector
1482config.detectorList[23].serial = '24'
1484# pitch (rotation about y) of the detector in degrees
1485config.detectorList[23].pitchDeg = 0.0
1487# ID of detector slot
1488config.detectorList[23].id = 24
1490config.detectorList[24] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1491# y0 of pixel bounding box
1492config.detectorList[24].bbox_y0 = 0
1494# y1 of pixel bounding box
1495config.detectorList[24].bbox_y1 = 4095
1497# x1 of pixel bounding box
1498config.detectorList[24].bbox_x1 = 2047
1500# x0 of pixel bounding box
1501config.detectorList[24].bbox_x0 = 0
1503# Name of detector slot
1504config.detectorList[24].name = 'S1'
1506# Pixel size in the x dimension in mm
1507config.detectorList[24].pixelSize_x = 0.015
1509# Name of native coordinate system
1510config.detectorList[24].transformDict.nativeSys = 'Pixels'
1512config.detectorList[24].transformDict.transforms = None
1513# x position of the reference point in the detector in pixels in transposed coordinates.
1514config.detectorList[24].refpos_x = 1023.5
1516# y position of the reference point in the detector in pixels in transposed coordinates.
1517config.detectorList[24].refpos_y = 2047.5
1519# Pixel size in the y dimension in mm
1520config.detectorList[24].pixelSize_y = 0.015
1522# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1523config.detectorList[24].detectorType = 0
1525# x offset from the origin of the camera in mm in the transposed system.
1526config.detectorList[24].offset_x = -16.798000000000002
1528# y offset from the origin of the camera in mm in the transposed system.
1529config.detectorList[24].offset_y = -191.216
1531# Transpose the pixel grid before orienting in focal plane?
1532config.detectorList[24].transposeDetector = False
1534# yaw (rotation about z) of the detector in degrees. This includes any
1535# necessary rotation to go from detector coordinates to camera coordinates
1536# after optional transposition.
1537config.detectorList[24].yawDeg = 0.007
1539# roll (rotation about x) of the detector in degrees
1540config.detectorList[24].rollDeg = 0.0
1542# Serial string associated with this specific detector
1543config.detectorList[24].serial = '25'
1545# pitch (rotation about y) of the detector in degrees
1546config.detectorList[24].pitchDeg = 0.0
1548# ID of detector slot
1549config.detectorList[24].id = 25
1551config.detectorList[25] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1552# y0 of pixel bounding box
1553config.detectorList[25].bbox_y0 = 0
1555# y1 of pixel bounding box
1556config.detectorList[25].bbox_y1 = 4095
1558# x1 of pixel bounding box
1559config.detectorList[25].bbox_x1 = 2047
1561# x0 of pixel bounding box
1562config.detectorList[25].bbox_x0 = 0
1564# Name of detector slot
1565config.detectorList[25].name = 'S2'
1567# Pixel size in the x dimension in mm
1568config.detectorList[25].pixelSize_x = 0.015
1570# Name of native coordinate system
1571config.detectorList[25].transformDict.nativeSys = 'Pixels'
1573config.detectorList[25].transformDict.transforms = None
1574# x position of the reference point in the detector in pixels in transposed coordinates.
1575config.detectorList[25].refpos_x = 1023.5
1577# y position of the reference point in the detector in pixels in transposed coordinates.
1578config.detectorList[25].refpos_y = 2047.5
1580# Pixel size in the y dimension in mm
1581config.detectorList[25].pixelSize_y = 0.015
1583# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1584config.detectorList[25].detectorType = 0
1586# x offset from the origin of the camera in mm in the transposed system.
1587config.detectorList[25].offset_x = -16.894
1589# y offset from the origin of the camera in mm in the transposed system.
1590config.detectorList[25].offset_y = -127.524
1592# Transpose the pixel grid before orienting in focal plane?
1593config.detectorList[25].transposeDetector = False
1595# yaw (rotation about z) of the detector in degrees. This includes any
1596# necessary rotation to go from detector coordinates to camera coordinates
1597# after optional transposition.
1598config.detectorList[25].yawDeg = 0.003
1600# roll (rotation about x) of the detector in degrees
1601config.detectorList[25].rollDeg = 0.0
1603# Serial string associated with this specific detector
1604config.detectorList[25].serial = '26'
1606# pitch (rotation about y) of the detector in degrees
1607config.detectorList[25].pitchDeg = 0.0
1609# ID of detector slot
1610config.detectorList[25].id = 26
1612config.detectorList[26] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1613# y0 of pixel bounding box
1614config.detectorList[26].bbox_y0 = 0
1616# y1 of pixel bounding box
1617config.detectorList[26].bbox_y1 = 4095
1619# x1 of pixel bounding box
1620config.detectorList[26].bbox_x1 = 2047
1622# x0 of pixel bounding box
1623config.detectorList[26].bbox_x0 = 0
1625# Name of detector slot
1626config.detectorList[26].name = 'S3'
1628# Pixel size in the x dimension in mm
1629config.detectorList[26].pixelSize_x = 0.015
1631# Name of native coordinate system
1632config.detectorList[26].transformDict.nativeSys = 'Pixels'
1634config.detectorList[26].transformDict.transforms = None
1635# x position of the reference point in the detector in pixels in transposed coordinates.
1636config.detectorList[26].refpos_x = 1023.5
1638# y position of the reference point in the detector in pixels in transposed coordinates.
1639config.detectorList[26].refpos_y = 2047.5
1641# Pixel size in the y dimension in mm
1642config.detectorList[26].pixelSize_y = 0.015
1644# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1645config.detectorList[26].detectorType = 0
1647# x offset from the origin of the camera in mm in the transposed system.
1648config.detectorList[26].offset_x = -16.85
1650# y offset from the origin of the camera in mm in the transposed system.
1651config.detectorList[26].offset_y = -63.792
1653# Transpose the pixel grid before orienting in focal plane?
1654config.detectorList[26].transposeDetector = False
1656# yaw (rotation about z) of the detector in degrees. This includes any
1657# necessary rotation to go from detector coordinates to camera coordinates
1658# after optional transposition.
1659config.detectorList[26].yawDeg = -0.01
1661# roll (rotation about x) of the detector in degrees
1662config.detectorList[26].rollDeg = 0.0
1664# Serial string associated with this specific detector
1665config.detectorList[26].serial = '27'
1667# pitch (rotation about y) of the detector in degrees
1668config.detectorList[26].pitchDeg = 0.0
1670# ID of detector slot
1671config.detectorList[26].id = 27
1673config.detectorList[27] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1674# y0 of pixel bounding box
1675config.detectorList[27].bbox_y0 = 0
1677# y1 of pixel bounding box
1678config.detectorList[27].bbox_y1 = 4095
1680# x1 of pixel bounding box
1681config.detectorList[27].bbox_x1 = 2047
1683# x0 of pixel bounding box
1684config.detectorList[27].bbox_x0 = 0
1686# Name of detector slot
1687config.detectorList[27].name = 'S4'
1689# Pixel size in the x dimension in mm
1690config.detectorList[27].pixelSize_x = 0.015
1692# Name of native coordinate system
1693config.detectorList[27].transformDict.nativeSys = 'Pixels'
1695config.detectorList[27].transformDict.transforms = None
1696# x position of the reference point in the detector in pixels in transposed coordinates.
1697config.detectorList[27].refpos_x = 1023.5
1699# y position of the reference point in the detector in pixels in transposed coordinates.
1700config.detectorList[27].refpos_y = 2047.5
1702# Pixel size in the y dimension in mm
1703config.detectorList[27].pixelSize_y = 0.015
1705# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1706config.detectorList[27].detectorType = 0
1708# x offset from the origin of the camera in mm in the transposed system.
1709config.detectorList[27].offset_x = -16.892000000000003
1711# y offset from the origin of the camera in mm in the transposed system.
1712config.detectorList[27].offset_y = 0.09200000000000053
1714# Transpose the pixel grid before orienting in focal plane?
1715config.detectorList[27].transposeDetector = False
1717# yaw (rotation about z) of the detector in degrees. This includes any
1718# necessary rotation to go from detector coordinates to camera coordinates
1719# after optional transposition.
1720config.detectorList[27].yawDeg = 0.019
1722# roll (rotation about x) of the detector in degrees
1723config.detectorList[27].rollDeg = 0.0
1725# Serial string associated with this specific detector
1726config.detectorList[27].serial = '28'
1728# pitch (rotation about y) of the detector in degrees
1729config.detectorList[27].pitchDeg = 0.0
1731# ID of detector slot
1732config.detectorList[27].id = 28
1734config.detectorList[28] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1735# y0 of pixel bounding box
1736config.detectorList[28].bbox_y0 = 0
1738# y1 of pixel bounding box
1739config.detectorList[28].bbox_y1 = 4095
1741# x1 of pixel bounding box
1742config.detectorList[28].bbox_x1 = 2047
1744# x0 of pixel bounding box
1745config.detectorList[28].bbox_x0 = 0
1747# Name of detector slot
1748config.detectorList[28].name = 'S5'
1750# Pixel size in the x dimension in mm
1751config.detectorList[28].pixelSize_x = 0.015
1753# Name of native coordinate system
1754config.detectorList[28].transformDict.nativeSys = 'Pixels'
1756config.detectorList[28].transformDict.transforms = None
1757# x position of the reference point in the detector in pixels in transposed coordinates.
1758config.detectorList[28].refpos_x = 1023.5
1760# y position of the reference point in the detector in pixels in transposed coordinates.
1761config.detectorList[28].refpos_y = 2047.5
1763# Pixel size in the y dimension in mm
1764config.detectorList[28].pixelSize_y = 0.015
1766# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1767config.detectorList[28].detectorType = 0
1769# x offset from the origin of the camera in mm in the transposed system.
1770config.detectorList[28].offset_x = -16.836
1772# y offset from the origin of the camera in mm in the transposed system.
1773config.detectorList[28].offset_y = 63.824
1775# Transpose the pixel grid before orienting in focal plane?
1776config.detectorList[28].transposeDetector = False
1778# yaw (rotation about z) of the detector in degrees. This includes any
1779# necessary rotation to go from detector coordinates to camera coordinates
1780# after optional transposition.
1781config.detectorList[28].yawDeg = 0.01
1783# roll (rotation about x) of the detector in degrees
1784config.detectorList[28].rollDeg = 0.0
1786# Serial string associated with this specific detector
1787config.detectorList[28].serial = '29'
1789# pitch (rotation about y) of the detector in degrees
1790config.detectorList[28].pitchDeg = 0.0
1792# ID of detector slot
1793config.detectorList[28].id = 29
1795config.detectorList[29] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1796# y0 of pixel bounding box
1797config.detectorList[29].bbox_y0 = 0
1799# y1 of pixel bounding box
1800config.detectorList[29].bbox_y1 = 4095
1802# x1 of pixel bounding box
1803config.detectorList[29].bbox_x1 = 2047
1805# x0 of pixel bounding box
1806config.detectorList[29].bbox_x0 = 0
1808# Name of detector slot
1809config.detectorList[29].name = 'S6'
1811# Pixel size in the x dimension in mm
1812config.detectorList[29].pixelSize_x = 0.015
1814# Name of native coordinate system
1815config.detectorList[29].transformDict.nativeSys = 'Pixels'
1817config.detectorList[29].transformDict.transforms = None
1818# x position of the reference point in the detector in pixels in transposed coordinates.
1819config.detectorList[29].refpos_x = 1023.5
1821# y position of the reference point in the detector in pixels in transposed coordinates.
1822config.detectorList[29].refpos_y = 2047.5
1824# Pixel size in the y dimension in mm
1825config.detectorList[29].pixelSize_y = 0.015
1827# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1828config.detectorList[29].detectorType = 0
1830# x offset from the origin of the camera in mm in the transposed system.
1831config.detectorList[29].offset_x = -16.85
1833# y offset from the origin of the camera in mm in the transposed system.
1834config.detectorList[29].offset_y = 127.636
1836# Transpose the pixel grid before orienting in focal plane?
1837config.detectorList[29].transposeDetector = False
1839# yaw (rotation about z) of the detector in degrees. This includes any
1840# necessary rotation to go from detector coordinates to camera coordinates
1841# after optional transposition.
1842config.detectorList[29].yawDeg = 0.001
1844# roll (rotation about x) of the detector in degrees
1845config.detectorList[29].rollDeg = 0.0
1847# Serial string associated with this specific detector
1848config.detectorList[29].serial = '30'
1850# pitch (rotation about y) of the detector in degrees
1851config.detectorList[29].pitchDeg = 0.0
1853# ID of detector slot
1854config.detectorList[29].id = 30
1856config.detectorList[30] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1857# y0 of pixel bounding box
1858config.detectorList[30].bbox_y0 = 0
1860# y1 of pixel bounding box
1861config.detectorList[30].bbox_y1 = 4095
1863# x1 of pixel bounding box
1864config.detectorList[30].bbox_x1 = 2047
1866# x0 of pixel bounding box
1867config.detectorList[30].bbox_x0 = 0
1869# Name of detector slot
1870config.detectorList[30].name = 'S7'
1872# Pixel size in the x dimension in mm
1873config.detectorList[30].pixelSize_x = 0.015
1875# Name of native coordinate system
1876config.detectorList[30].transformDict.nativeSys = 'Pixels'
1878config.detectorList[30].transformDict.transforms = None
1879# x position of the reference point in the detector in pixels in transposed coordinates.
1880config.detectorList[30].refpos_x = 1023.5
1882# y position of the reference point in the detector in pixels in transposed coordinates.
1883config.detectorList[30].refpos_y = 2047.5
1885# Pixel size in the y dimension in mm
1886config.detectorList[30].pixelSize_y = 0.015
1888# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1889config.detectorList[30].detectorType = 0
1891# x offset from the origin of the camera in mm in the transposed system.
1892config.detectorList[30].offset_x = -16.898
1894# y offset from the origin of the camera in mm in the transposed system.
1895config.detectorList[30].offset_y = 191.268
1897# Transpose the pixel grid before orienting in focal plane?
1898config.detectorList[30].transposeDetector = False
1900# yaw (rotation about z) of the detector in degrees. This includes any
1901# necessary rotation to go from detector coordinates to camera coordinates
1902# after optional transposition.
1903config.detectorList[30].yawDeg = 0.023
1905# roll (rotation about x) of the detector in degrees
1906config.detectorList[30].rollDeg = 0.0
1908# Serial string associated with this specific detector
1909config.detectorList[30].serial = '31'
1911# pitch (rotation about y) of the detector in degrees
1912config.detectorList[30].pitchDeg = 0.0
1914# ID of detector slot
1915config.detectorList[30].id = 31
1917config.detectorList[31] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1918# y0 of pixel bounding box
1919config.detectorList[31].bbox_y0 = 0
1921# y1 of pixel bounding box
1922config.detectorList[31].bbox_y1 = 4095
1924# x1 of pixel bounding box
1925config.detectorList[31].bbox_x1 = 2047
1927# x0 of pixel bounding box
1928config.detectorList[31].bbox_x0 = 0
1930# Name of detector slot
1931config.detectorList[31].name = 'N1'
1933# Pixel size in the x dimension in mm
1934config.detectorList[31].pixelSize_x = 0.015
1936# Name of native coordinate system
1937config.detectorList[31].transformDict.nativeSys = 'Pixels'
1939config.detectorList[31].transformDict.transforms = None
1940# x position of the reference point in the detector in pixels in transposed coordinates.
1941config.detectorList[31].refpos_x = 1023.5
1943# y position of the reference point in the detector in pixels in transposed coordinates.
1944config.detectorList[31].refpos_y = 2047.5
1946# Pixel size in the y dimension in mm
1947config.detectorList[31].pixelSize_y = 0.015
1949# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1950config.detectorList[31].detectorType = 0
1952# x offset from the origin of the camera in mm in the transposed system.
1953config.detectorList[31].offset_x = 16.894
1955# y offset from the origin of the camera in mm in the transposed system.
1956config.detectorList[31].offset_y = -191.252
1958# Transpose the pixel grid before orienting in focal plane?
1959config.detectorList[31].transposeDetector = False
1961# yaw (rotation about z) of the detector in degrees. This includes any
1962# necessary rotation to go from detector coordinates to camera coordinates
1963# after optional transposition.
1964config.detectorList[31].yawDeg = -0.024
1966# roll (rotation about x) of the detector in degrees
1967config.detectorList[31].rollDeg = 0.0
1969# Serial string associated with this specific detector
1970config.detectorList[31].serial = '32'
1972# pitch (rotation about y) of the detector in degrees
1973config.detectorList[31].pitchDeg = 0.0
1975# ID of detector slot
1976config.detectorList[31].id = 32
1978config.detectorList[32] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1979# y0 of pixel bounding box
1980config.detectorList[32].bbox_y0 = 0
1982# y1 of pixel bounding box
1983config.detectorList[32].bbox_y1 = 4095
1985# x1 of pixel bounding box
1986config.detectorList[32].bbox_x1 = 2047
1988# x0 of pixel bounding box
1989config.detectorList[32].bbox_x0 = 0
1991# Name of detector slot
1992config.detectorList[32].name = 'N2'
1994# Pixel size in the x dimension in mm
1995config.detectorList[32].pixelSize_x = 0.015
1997# Name of native coordinate system
1998config.detectorList[32].transformDict.nativeSys = 'Pixels'
2000config.detectorList[32].transformDict.transforms = None
2001# x position of the reference point in the detector in pixels in transposed coordinates.
2002config.detectorList[32].refpos_x = 1023.5
2004# y position of the reference point in the detector in pixels in transposed coordinates.
2005config.detectorList[32].refpos_y = 2047.5
2007# Pixel size in the y dimension in mm
2008config.detectorList[32].pixelSize_y = 0.015
2010# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
2011config.detectorList[32].detectorType = 0
2013# x offset from the origin of the camera in mm in the transposed system.
2014config.detectorList[32].offset_x = 16.884
2016# y offset from the origin of the camera in mm in the transposed system.
2017config.detectorList[32].offset_y = -127.54599999999999
2019# Transpose the pixel grid before orienting in focal plane?
2020config.detectorList[32].transposeDetector = False
2022# yaw (rotation about z) of the detector in degrees. This includes any
2023# necessary rotation to go from detector coordinates to camera coordinates
2024# after optional transposition.
2025config.detectorList[32].yawDeg = -0.012
2027# roll (rotation about x) of the detector in degrees
2028config.detectorList[32].rollDeg = 0.0
2030# Serial string associated with this specific detector
2031config.detectorList[32].serial = '33'
2033# pitch (rotation about y) of the detector in degrees
2034config.detectorList[32].pitchDeg = 0.0
2036# ID of detector slot
2037config.detectorList[32].id = 33
2039config.detectorList[33] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
2040# y0 of pixel bounding box
2041config.detectorList[33].bbox_y0 = 0
2043# y1 of pixel bounding box
2044config.detectorList[33].bbox_y1 = 4095
2046# x1 of pixel bounding box
2047config.detectorList[33].bbox_x1 = 2047
2049# x0 of pixel bounding box
2050config.detectorList[33].bbox_x0 = 0
2052# Name of detector slot
2053config.detectorList[33].name = 'N3'
2055# Pixel size in the x dimension in mm
2056config.detectorList[33].pixelSize_x = 0.015
2058# Name of native coordinate system
2059config.detectorList[33].transformDict.nativeSys = 'Pixels'
2061config.detectorList[33].transformDict.transforms = None
2062# x position of the reference point in the detector in pixels in transposed coordinates.
2063config.detectorList[33].refpos_x = 1023.5
2065# y position of the reference point in the detector in pixels in transposed coordinates.
2066config.detectorList[33].refpos_y = 2047.5
2068# Pixel size in the y dimension in mm
2069config.detectorList[33].pixelSize_y = 0.015
2071# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
2072config.detectorList[33].detectorType = 0
2074# x offset from the origin of the camera in mm in the transposed system.
2075config.detectorList[33].offset_x = 16.921999999999997
2077# y offset from the origin of the camera in mm in the transposed system.
2078config.detectorList[33].offset_y = -63.836
2080# Transpose the pixel grid before orienting in focal plane?
2081config.detectorList[33].transposeDetector = False
2083# yaw (rotation about z) of the detector in degrees. This includes any
2084# necessary rotation to go from detector coordinates to camera coordinates
2085# after optional transposition.
2086config.detectorList[33].yawDeg = 0.01
2088# roll (rotation about x) of the detector in degrees
2089config.detectorList[33].rollDeg = 0.0
2091# Serial string associated with this specific detector
2092config.detectorList[33].serial = '34'
2094# pitch (rotation about y) of the detector in degrees
2095config.detectorList[33].pitchDeg = 0.0
2097# ID of detector slot
2098config.detectorList[33].id = 34
2100config.detectorList[34] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
2101# y0 of pixel bounding box
2102config.detectorList[34].bbox_y0 = 0
2104# y1 of pixel bounding box
2105config.detectorList[34].bbox_y1 = 4095
2107# x1 of pixel bounding box
2108config.detectorList[34].bbox_x1 = 2047
2110# x0 of pixel bounding box
2111config.detectorList[34].bbox_x0 = 0
2113# Name of detector slot
2114config.detectorList[34].name = 'N4'
2116# Pixel size in the x dimension in mm
2117config.detectorList[34].pixelSize_x = 0.015
2119# Name of native coordinate system
2120config.detectorList[34].transformDict.nativeSys = 'Pixels'
2122config.detectorList[34].transformDict.transforms = None
2123# x position of the reference point in the detector in pixels in transposed coordinates.
2124config.detectorList[34].refpos_x = 1023.5
2126# y position of the reference point in the detector in pixels in transposed coordinates.
2127config.detectorList[34].refpos_y = 2047.5
2129# Pixel size in the y dimension in mm
2130config.detectorList[34].pixelSize_y = 0.015
2132# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
2133config.detectorList[34].detectorType = 0
2135# x offset from the origin of the camera in mm in the transposed system.
2136config.detectorList[34].offset_x = 16.908
2138# y offset from the origin of the camera in mm in the transposed system.
2139config.detectorList[34].offset_y = -0.017999999999998906
2141# Transpose the pixel grid before orienting in focal plane?
2142config.detectorList[34].transposeDetector = False
2144# yaw (rotation about z) of the detector in degrees. This includes any
2145# necessary rotation to go from detector coordinates to camera coordinates
2146# after optional transposition.
2147config.detectorList[34].yawDeg = 0.003
2149# roll (rotation about x) of the detector in degrees
2150config.detectorList[34].rollDeg = 0.0
2152# Serial string associated with this specific detector
2153config.detectorList[34].serial = '35'
2155# pitch (rotation about y) of the detector in degrees
2156config.detectorList[34].pitchDeg = 0.0
2158# ID of detector slot
2159config.detectorList[34].id = 35
2161config.detectorList[35] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
2162# y0 of pixel bounding box
2163config.detectorList[35].bbox_y0 = 0
2165# y1 of pixel bounding box
2166config.detectorList[35].bbox_y1 = 4095
2168# x1 of pixel bounding box
2169config.detectorList[35].bbox_x1 = 2047
2171# x0 of pixel bounding box
2172config.detectorList[35].bbox_x0 = 0
2174# Name of detector slot
2175config.detectorList[35].name = 'N5'
2177# Pixel size in the x dimension in mm
2178config.detectorList[35].pixelSize_x = 0.015
2180# Name of native coordinate system
2181config.detectorList[35].transformDict.nativeSys = 'Pixels'
2183config.detectorList[35].transformDict.transforms = None
2184# x position of the reference point in the detector in pixels in transposed coordinates.
2185config.detectorList[35].refpos_x = 1023.5
2187# y position of the reference point in the detector in pixels in transposed coordinates.
2188config.detectorList[35].refpos_y = 2047.5
2190# Pixel size in the y dimension in mm
2191config.detectorList[35].pixelSize_y = 0.015
2193# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
2194config.detectorList[35].detectorType = 0
2196# x offset from the origin of the camera in mm in the transposed system.
2197config.detectorList[35].offset_x = 16.978
2199# y offset from the origin of the camera in mm in the transposed system.
2200config.detectorList[35].offset_y = 63.708
2202# Transpose the pixel grid before orienting in focal plane?
2203config.detectorList[35].transposeDetector = False
2205# yaw (rotation about z) of the detector in degrees. This includes any
2206# necessary rotation to go from detector coordinates to camera coordinates
2207# after optional transposition.
2208config.detectorList[35].yawDeg = 0.05
2210# roll (rotation about x) of the detector in degrees
2211config.detectorList[35].rollDeg = 0.0
2213# Serial string associated with this specific detector
2214config.detectorList[35].serial = '36'
2216# pitch (rotation about y) of the detector in degrees
2217config.detectorList[35].pitchDeg = 0.0
2219# ID of detector slot
2220config.detectorList[35].id = 36
2222config.detectorList[36] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
2223# y0 of pixel bounding box
2224config.detectorList[36].bbox_y0 = 0
2226# y1 of pixel bounding box
2227config.detectorList[36].bbox_y1 = 4095
2229# x1 of pixel bounding box
2230config.detectorList[36].bbox_x1 = 2047
2232# x0 of pixel bounding box
2233config.detectorList[36].bbox_x0 = 0
2235# Name of detector slot
2236config.detectorList[36].name = 'N6'
2238# Pixel size in the x dimension in mm
2239config.detectorList[36].pixelSize_x = 0.015
2241# Name of native coordinate system
2242config.detectorList[36].transformDict.nativeSys = 'Pixels'
2244config.detectorList[36].transformDict.transforms = None
2245# x position of the reference point in the detector in pixels in transposed coordinates.
2246config.detectorList[36].refpos_x = 1023.5
2248# y position of the reference point in the detector in pixels in transposed coordinates.
2249config.detectorList[36].refpos_y = 2047.5
2251# Pixel size in the y dimension in mm
2252config.detectorList[36].pixelSize_y = 0.015
2254# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
2255config.detectorList[36].detectorType = 0
2257# x offset from the origin of the camera in mm in the transposed system.
2258config.detectorList[36].offset_x = 16.872
2260# y offset from the origin of the camera in mm in the transposed system.
2261config.detectorList[36].offset_y = 127.47999999999999
2263# Transpose the pixel grid before orienting in focal plane?
2264config.detectorList[36].transposeDetector = False
2266# yaw (rotation about z) of the detector in degrees. This includes any
2267# necessary rotation to go from detector coordinates to camera coordinates
2268# after optional transposition.
2269config.detectorList[36].yawDeg = 0.008
2271# roll (rotation about x) of the detector in degrees
2272config.detectorList[36].rollDeg = 0.0
2274# Serial string associated with this specific detector
2275config.detectorList[36].serial = '37'
2277# pitch (rotation about y) of the detector in degrees
2278config.detectorList[36].pitchDeg = 0.0
2280# ID of detector slot
2281config.detectorList[36].id = 37
2283config.detectorList[37] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
2284# y0 of pixel bounding box
2285config.detectorList[37].bbox_y0 = 0
2287# y1 of pixel bounding box
2288config.detectorList[37].bbox_y1 = 4095
2290# x1 of pixel bounding box
2291config.detectorList[37].bbox_x1 = 2047
2293# x0 of pixel bounding box
2294config.detectorList[37].bbox_x0 = 0
2296# Name of detector slot
2297config.detectorList[37].name = 'N7'
2299# Pixel size in the x dimension in mm
2300config.detectorList[37].pixelSize_x = 0.015
2302# Name of native coordinate system
2303config.detectorList[37].transformDict.nativeSys = 'Pixels'
2305config.detectorList[37].transformDict.transforms = None
2306# x position of the reference point in the detector in pixels in transposed coordinates.
2307config.detectorList[37].refpos_x = 1023.5
2309# y position of the reference point in the detector in pixels in transposed coordinates.
2310config.detectorList[37].refpos_y = 2047.5
2312# Pixel size in the y dimension in mm
2313config.detectorList[37].pixelSize_y = 0.015
2315# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
2316config.detectorList[37].detectorType = 0
2318# x offset from the origin of the camera in mm in the transposed system.
2319config.detectorList[37].offset_x = 16.878
2321# y offset from the origin of the camera in mm in the transposed system.
2322config.detectorList[37].offset_y = 191.23
2324# Transpose the pixel grid before orienting in focal plane?
2325config.detectorList[37].transposeDetector = False
2327# yaw (rotation about z) of the detector in degrees. This includes any
2328# necessary rotation to go from detector coordinates to camera coordinates
2329# after optional transposition.
2330config.detectorList[37].yawDeg = -0.014
2332# roll (rotation about x) of the detector in degrees
2333config.detectorList[37].rollDeg = 0.0
2335# Serial string associated with this specific detector
2336config.detectorList[37].serial = '38'
2338# pitch (rotation about y) of the detector in degrees
2339config.detectorList[37].pitchDeg = 0.0
2341# ID of detector slot
2342config.detectorList[37].id = 38
2344config.detectorList[38] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
2345# y0 of pixel bounding box
2346config.detectorList[38].bbox_y0 = 0
2348# y1 of pixel bounding box
2349config.detectorList[38].bbox_y1 = 4095
2351# x1 of pixel bounding box
2352config.detectorList[38].bbox_x1 = 2047
2354# x0 of pixel bounding box
2355config.detectorList[38].bbox_x0 = 0
2357# Name of detector slot
2358config.detectorList[38].name = 'N8'
2360# Pixel size in the x dimension in mm
2361config.detectorList[38].pixelSize_x = 0.015
2363# Name of native coordinate system
2364config.detectorList[38].transformDict.nativeSys = 'Pixels'
2366config.detectorList[38].transformDict.transforms = None
2367# x position of the reference point in the detector in pixels in transposed coordinates.
2368config.detectorList[38].refpos_x = 1023.5
2370# y position of the reference point in the detector in pixels in transposed coordinates.
2371config.detectorList[38].refpos_y = 2047.5
2373# Pixel size in the y dimension in mm
2374config.detectorList[38].pixelSize_y = 0.015
2376# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
2377config.detectorList[38].detectorType = 0
2379# x offset from the origin of the camera in mm in the transposed system.
2380config.detectorList[38].offset_x = 50.662000000000006
2382# y offset from the origin of the camera in mm in the transposed system.
2383config.detectorList[38].offset_y = -159.379
2385# Transpose the pixel grid before orienting in focal plane?
2386config.detectorList[38].transposeDetector = False
2388# yaw (rotation about z) of the detector in degrees. This includes any
2389# necessary rotation to go from detector coordinates to camera coordinates
2390# after optional transposition.
2391config.detectorList[38].yawDeg = 0.011
2393# roll (rotation about x) of the detector in degrees
2394config.detectorList[38].rollDeg = 0.0
2396# Serial string associated with this specific detector
2397config.detectorList[38].serial = '39'
2399# pitch (rotation about y) of the detector in degrees
2400config.detectorList[38].pitchDeg = 0.0
2402# ID of detector slot
2403config.detectorList[38].id = 39
2405config.detectorList[39] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
2406# y0 of pixel bounding box
2407config.detectorList[39].bbox_y0 = 0
2409# y1 of pixel bounding box
2410config.detectorList[39].bbox_y1 = 4095
2412# x1 of pixel bounding box
2413config.detectorList[39].bbox_x1 = 2047
2415# x0 of pixel bounding box
2416config.detectorList[39].bbox_x0 = 0
2418# Name of detector slot
2419config.detectorList[39].name = 'N9'
2421# Pixel size in the x dimension in mm
2422config.detectorList[39].pixelSize_x = 0.015
2424# Name of native coordinate system
2425config.detectorList[39].transformDict.nativeSys = 'Pixels'
2427config.detectorList[39].transformDict.transforms = None
2428# x position of the reference point in the detector in pixels in transposed coordinates.
2429config.detectorList[39].refpos_x = 1023.5
2431# y position of the reference point in the detector in pixels in transposed coordinates.
2432config.detectorList[39].refpos_y = 2047.5
2434# Pixel size in the y dimension in mm
2435config.detectorList[39].pixelSize_y = 0.015
2437# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
2438config.detectorList[39].detectorType = 0
2440# x offset from the origin of the camera in mm in the transposed system.
2441config.detectorList[39].offset_x = 50.682
2443# y offset from the origin of the camera in mm in the transposed system.
2444config.detectorList[39].offset_y = -95.727
2446# Transpose the pixel grid before orienting in focal plane?
2447config.detectorList[39].transposeDetector = False
2449# yaw (rotation about z) of the detector in degrees. This includes any
2450# necessary rotation to go from detector coordinates to camera coordinates
2451# after optional transposition.
2452config.detectorList[39].yawDeg = 0.007
2454# roll (rotation about x) of the detector in degrees
2455config.detectorList[39].rollDeg = 0.0
2457# Serial string associated with this specific detector
2458config.detectorList[39].serial = '40'
2460# pitch (rotation about y) of the detector in degrees
2461config.detectorList[39].pitchDeg = 0.0
2463# ID of detector slot
2464config.detectorList[39].id = 40
2466config.detectorList[40] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
2467# y0 of pixel bounding box
2468config.detectorList[40].bbox_y0 = 0
2470# y1 of pixel bounding box
2471config.detectorList[40].bbox_y1 = 4095
2473# x1 of pixel bounding box
2474config.detectorList[40].bbox_x1 = 2047
2476# x0 of pixel bounding box
2477config.detectorList[40].bbox_x0 = 0
2479# Name of detector slot
2480config.detectorList[40].name = 'N10'
2482# Pixel size in the x dimension in mm
2483config.detectorList[40].pixelSize_x = 0.015
2485# Name of native coordinate system
2486config.detectorList[40].transformDict.nativeSys = 'Pixels'
2488config.detectorList[40].transformDict.transforms = None
2489# x position of the reference point in the detector in pixels in transposed coordinates.
2490config.detectorList[40].refpos_x = 1023.5
2492# y position of the reference point in the detector in pixels in transposed coordinates.
2493config.detectorList[40].refpos_y = 2047.5
2495# Pixel size in the y dimension in mm
2496config.detectorList[40].pixelSize_y = 0.015
2498# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
2499config.detectorList[40].detectorType = 0
2501# x offset from the origin of the camera in mm in the transposed system.
2502config.detectorList[40].offset_x = 50.664
2504# y offset from the origin of the camera in mm in the transposed system.
2505config.detectorList[40].offset_y = -31.911
2507# Transpose the pixel grid before orienting in focal plane?
2508config.detectorList[40].transposeDetector = False
2510# yaw (rotation about z) of the detector in degrees. This includes any
2511# necessary rotation to go from detector coordinates to camera coordinates
2512# after optional transposition.
2513config.detectorList[40].yawDeg = 0.016
2515# roll (rotation about x) of the detector in degrees
2516config.detectorList[40].rollDeg = 0.0
2518# Serial string associated with this specific detector
2519config.detectorList[40].serial = '41'
2521# pitch (rotation about y) of the detector in degrees
2522config.detectorList[40].pitchDeg = 0.0
2524# ID of detector slot
2525config.detectorList[40].id = 41
2527config.detectorList[41] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
2528# y0 of pixel bounding box
2529config.detectorList[41].bbox_y0 = 0
2531# y1 of pixel bounding box
2532config.detectorList[41].bbox_y1 = 4095
2534# x1 of pixel bounding box
2535config.detectorList[41].bbox_x1 = 2047
2537# x0 of pixel bounding box
2538config.detectorList[41].bbox_x0 = 0
2540# Name of detector slot
2541config.detectorList[41].name = 'N11'
2543# Pixel size in the x dimension in mm
2544config.detectorList[41].pixelSize_x = 0.015
2546# Name of native coordinate system
2547config.detectorList[41].transformDict.nativeSys = 'Pixels'
2549config.detectorList[41].transformDict.transforms = None
2550# x position of the reference point in the detector in pixels in transposed coordinates.
2551config.detectorList[41].refpos_x = 1023.5
2553# y position of the reference point in the detector in pixels in transposed coordinates.
2554config.detectorList[41].refpos_y = 2047.5
2556# Pixel size in the y dimension in mm
2557config.detectorList[41].pixelSize_y = 0.015
2559# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
2560config.detectorList[41].detectorType = 0
2562# x offset from the origin of the camera in mm in the transposed system.
2563config.detectorList[41].offset_x = 50.714
2565# y offset from the origin of the camera in mm in the transposed system.
2566config.detectorList[41].offset_y = 31.933
2568# Transpose the pixel grid before orienting in focal plane?
2569config.detectorList[41].transposeDetector = False
2571# yaw (rotation about z) of the detector in degrees. This includes any
2572# necessary rotation to go from detector coordinates to camera coordinates
2573# after optional transposition.
2574config.detectorList[41].yawDeg = 0.015
2576# roll (rotation about x) of the detector in degrees
2577config.detectorList[41].rollDeg = 0.0
2579# Serial string associated with this specific detector
2580config.detectorList[41].serial = '42'
2582# pitch (rotation about y) of the detector in degrees
2583config.detectorList[41].pitchDeg = 0.0
2585# ID of detector slot
2586config.detectorList[41].id = 42
2588config.detectorList[42] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
2589# y0 of pixel bounding box
2590config.detectorList[42].bbox_y0 = 0
2592# y1 of pixel bounding box
2593config.detectorList[42].bbox_y1 = 4095
2595# x1 of pixel bounding box
2596config.detectorList[42].bbox_x1 = 2047
2598# x0 of pixel bounding box
2599config.detectorList[42].bbox_x0 = 0
2601# Name of detector slot
2602config.detectorList[42].name = 'N12'
2604# Pixel size in the x dimension in mm
2605config.detectorList[42].pixelSize_x = 0.015
2607# Name of native coordinate system
2608config.detectorList[42].transformDict.nativeSys = 'Pixels'
2610config.detectorList[42].transformDict.transforms = None
2611# x position of the reference point in the detector in pixels in transposed coordinates.
2612config.detectorList[42].refpos_x = 1023.5
2614# y position of the reference point in the detector in pixels in transposed coordinates.
2615config.detectorList[42].refpos_y = 2047.5
2617# Pixel size in the y dimension in mm
2618config.detectorList[42].pixelSize_y = 0.015
2620# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
2621config.detectorList[42].detectorType = 0
2623# x offset from the origin of the camera in mm in the transposed system.
2624config.detectorList[42].offset_x = 50.678
2626# y offset from the origin of the camera in mm in the transposed system.
2627config.detectorList[42].offset_y = 95.689
2629# Transpose the pixel grid before orienting in focal plane?
2630config.detectorList[42].transposeDetector = False
2632# yaw (rotation about z) of the detector in degrees. This includes any
2633# necessary rotation to go from detector coordinates to camera coordinates
2634# after optional transposition.
2635config.detectorList[42].yawDeg = 0.017
2637# roll (rotation about x) of the detector in degrees
2638config.detectorList[42].rollDeg = 0.0
2640# Serial string associated with this specific detector
2641config.detectorList[42].serial = '43'
2643# pitch (rotation about y) of the detector in degrees
2644config.detectorList[42].pitchDeg = 0.0
2646# ID of detector slot
2647config.detectorList[42].id = 43
2649config.detectorList[43] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
2650# y0 of pixel bounding box
2651config.detectorList[43].bbox_y0 = 0
2653# y1 of pixel bounding box
2654config.detectorList[43].bbox_y1 = 4095
2656# x1 of pixel bounding box
2657config.detectorList[43].bbox_x1 = 2047
2659# x0 of pixel bounding box
2660config.detectorList[43].bbox_x0 = 0
2662# Name of detector slot
2663config.detectorList[43].name = 'N13'
2665# Pixel size in the x dimension in mm
2666config.detectorList[43].pixelSize_x = 0.015
2668# Name of native coordinate system
2669config.detectorList[43].transformDict.nativeSys = 'Pixels'
2671config.detectorList[43].transformDict.transforms = None
2672# x position of the reference point in the detector in pixels in transposed coordinates.
2673config.detectorList[43].refpos_x = 1023.5
2675# y position of the reference point in the detector in pixels in transposed coordinates.
2676config.detectorList[43].refpos_y = 2047.5
2678# Pixel size in the y dimension in mm
2679config.detectorList[43].pixelSize_y = 0.015
2681# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
2682config.detectorList[43].detectorType = 0
2684# x offset from the origin of the camera in mm in the transposed system.
2685config.detectorList[43].offset_x = 50.646
2687# y offset from the origin of the camera in mm in the transposed system.
2688config.detectorList[43].offset_y = 159.333
2690# Transpose the pixel grid before orienting in focal plane?
2691config.detectorList[43].transposeDetector = False
2693# yaw (rotation about z) of the detector in degrees. This includes any
2694# necessary rotation to go from detector coordinates to camera coordinates
2695# after optional transposition.
2696config.detectorList[43].yawDeg = 0.01
2698# roll (rotation about x) of the detector in degrees
2699config.detectorList[43].rollDeg = 0.0
2701# Serial string associated with this specific detector
2702config.detectorList[43].serial = '44'
2704# pitch (rotation about y) of the detector in degrees
2705config.detectorList[43].pitchDeg = 0.0
2707# ID of detector slot
2708config.detectorList[43].id = 44
2710config.detectorList[44] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
2711# y0 of pixel bounding box
2712config.detectorList[44].bbox_y0 = 0
2714# y1 of pixel bounding box
2715config.detectorList[44].bbox_y1 = 4095
2717# x1 of pixel bounding box
2718config.detectorList[44].bbox_x1 = 2047
2720# x0 of pixel bounding box
2721config.detectorList[44].bbox_x0 = 0
2723# Name of detector slot
2724config.detectorList[44].name = 'N14'
2726# Pixel size in the x dimension in mm
2727config.detectorList[44].pixelSize_x = 0.015
2729# Name of native coordinate system
2730config.detectorList[44].transformDict.nativeSys = 'Pixels'
2732config.detectorList[44].transformDict.transforms = None
2733# x position of the reference point in the detector in pixels in transposed coordinates.
2734config.detectorList[44].refpos_x = 1023.5
2736# y position of the reference point in the detector in pixels in transposed coordinates.
2737config.detectorList[44].refpos_y = 2047.5
2739# Pixel size in the y dimension in mm
2740config.detectorList[44].pixelSize_y = 0.015
2742# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
2743config.detectorList[44].detectorType = 0
2745# x offset from the origin of the camera in mm in the transposed system.
2746config.detectorList[44].offset_x = 84.352
2748# y offset from the origin of the camera in mm in the transposed system.
2749config.detectorList[44].offset_y = -159.393
2751# Transpose the pixel grid before orienting in focal plane?
2752config.detectorList[44].transposeDetector = False
2754# yaw (rotation about z) of the detector in degrees. This includes any
2755# necessary rotation to go from detector coordinates to camera coordinates
2756# after optional transposition.
2757config.detectorList[44].yawDeg = 0.026
2759# roll (rotation about x) of the detector in degrees
2760config.detectorList[44].rollDeg = 0.0
2762# Serial string associated with this specific detector
2763config.detectorList[44].serial = '45'
2765# pitch (rotation about y) of the detector in degrees
2766config.detectorList[44].pitchDeg = 0.0
2768# ID of detector slot
2769config.detectorList[44].id = 45
2771config.detectorList[45] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
2772# y0 of pixel bounding box
2773config.detectorList[45].bbox_y0 = 0
2775# y1 of pixel bounding box
2776config.detectorList[45].bbox_y1 = 4095
2778# x1 of pixel bounding box
2779config.detectorList[45].bbox_x1 = 2047
2781# x0 of pixel bounding box
2782config.detectorList[45].bbox_x0 = 0
2784# Name of detector slot
2785config.detectorList[45].name = 'N15'
2787# Pixel size in the x dimension in mm
2788config.detectorList[45].pixelSize_x = 0.015
2790# Name of native coordinate system
2791config.detectorList[45].transformDict.nativeSys = 'Pixels'
2793config.detectorList[45].transformDict.transforms = None
2794# x position of the reference point in the detector in pixels in transposed coordinates.
2795config.detectorList[45].refpos_x = 1023.5
2797# y position of the reference point in the detector in pixels in transposed coordinates.
2798config.detectorList[45].refpos_y = 2047.5
2800# Pixel size in the y dimension in mm
2801config.detectorList[45].pixelSize_y = 0.015
2803# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
2804config.detectorList[45].detectorType = 0
2806# x offset from the origin of the camera in mm in the transposed system.
2807config.detectorList[45].offset_x = 84.384
2809# y offset from the origin of the camera in mm in the transposed system.
2810config.detectorList[45].offset_y = -95.787
2812# Transpose the pixel grid before orienting in focal plane?
2813config.detectorList[45].transposeDetector = False
2815# yaw (rotation about z) of the detector in degrees. This includes any
2816# necessary rotation to go from detector coordinates to camera coordinates
2817# after optional transposition.
2818config.detectorList[45].yawDeg = 0.005
2820# roll (rotation about x) of the detector in degrees
2821config.detectorList[45].rollDeg = 0.0
2823# Serial string associated with this specific detector
2824config.detectorList[45].serial = '46'
2826# pitch (rotation about y) of the detector in degrees
2827config.detectorList[45].pitchDeg = 0.0
2829# ID of detector slot
2830config.detectorList[45].id = 46
2832config.detectorList[46] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
2833# y0 of pixel bounding box
2834config.detectorList[46].bbox_y0 = 0
2836# y1 of pixel bounding box
2837config.detectorList[46].bbox_y1 = 4095
2839# x1 of pixel bounding box
2840config.detectorList[46].bbox_x1 = 2047
2842# x0 of pixel bounding box
2843config.detectorList[46].bbox_x0 = 0
2845# Name of detector slot
2846config.detectorList[46].name = 'N16'
2848# Pixel size in the x dimension in mm
2849config.detectorList[46].pixelSize_x = 0.015
2851# Name of native coordinate system
2852config.detectorList[46].transformDict.nativeSys = 'Pixels'
2854config.detectorList[46].transformDict.transforms = None
2855# x position of the reference point in the detector in pixels in transposed coordinates.
2856config.detectorList[46].refpos_x = 1023.5
2858# y position of the reference point in the detector in pixels in transposed coordinates.
2859config.detectorList[46].refpos_y = 2047.5
2861# Pixel size in the y dimension in mm
2862config.detectorList[46].pixelSize_y = 0.015
2864# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
2865config.detectorList[46].detectorType = 0
2867# x offset from the origin of the camera in mm in the transposed system.
2868config.detectorList[46].offset_x = 84.412
2870# y offset from the origin of the camera in mm in the transposed system.
2871config.detectorList[46].offset_y = -31.899
2873# Transpose the pixel grid before orienting in focal plane?
2874config.detectorList[46].transposeDetector = False
2876# yaw (rotation about z) of the detector in degrees. This includes any
2877# necessary rotation to go from detector coordinates to camera coordinates
2878# after optional transposition.
2879config.detectorList[46].yawDeg = -0.025
2881# roll (rotation about x) of the detector in degrees
2882config.detectorList[46].rollDeg = 0.0
2884# Serial string associated with this specific detector
2885config.detectorList[46].serial = '47'
2887# pitch (rotation about y) of the detector in degrees
2888config.detectorList[46].pitchDeg = 0.0
2890# ID of detector slot
2891config.detectorList[46].id = 47
2893config.detectorList[47] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
2894# y0 of pixel bounding box
2895config.detectorList[47].bbox_y0 = 0
2897# y1 of pixel bounding box
2898config.detectorList[47].bbox_y1 = 4095
2900# x1 of pixel bounding box
2901config.detectorList[47].bbox_x1 = 2047
2903# x0 of pixel bounding box
2904config.detectorList[47].bbox_x0 = 0
2906# Name of detector slot
2907config.detectorList[47].name = 'N17'
2909# Pixel size in the x dimension in mm
2910config.detectorList[47].pixelSize_x = 0.015
2912# Name of native coordinate system
2913config.detectorList[47].transformDict.nativeSys = 'Pixels'
2915config.detectorList[47].transformDict.transforms = None
2916# x position of the reference point in the detector in pixels in transposed coordinates.
2917config.detectorList[47].refpos_x = 1023.5
2919# y position of the reference point in the detector in pixels in transposed coordinates.
2920config.detectorList[47].refpos_y = 2047.5
2922# Pixel size in the y dimension in mm
2923config.detectorList[47].pixelSize_y = 0.015
2925# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
2926config.detectorList[47].detectorType = 0
2928# x offset from the origin of the camera in mm in the transposed system.
2929config.detectorList[47].offset_x = 84.482
2931# y offset from the origin of the camera in mm in the transposed system.
2932config.detectorList[47].offset_y = 31.787
2934# Transpose the pixel grid before orienting in focal plane?
2935config.detectorList[47].transposeDetector = False
2937# yaw (rotation about z) of the detector in degrees. This includes any
2938# necessary rotation to go from detector coordinates to camera coordinates
2939# after optional transposition.
2940config.detectorList[47].yawDeg = 0.032
2942# roll (rotation about x) of the detector in degrees
2943config.detectorList[47].rollDeg = 0.0
2945# Serial string associated with this specific detector
2946config.detectorList[47].serial = '48'
2948# pitch (rotation about y) of the detector in degrees
2949config.detectorList[47].pitchDeg = 0.0
2951# ID of detector slot
2952config.detectorList[47].id = 48
2954config.detectorList[48] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
2955# y0 of pixel bounding box
2956config.detectorList[48].bbox_y0 = 0
2958# y1 of pixel bounding box
2959config.detectorList[48].bbox_y1 = 4095
2961# x1 of pixel bounding box
2962config.detectorList[48].bbox_x1 = 2047
2964# x0 of pixel bounding box
2965config.detectorList[48].bbox_x0 = 0
2967# Name of detector slot
2968config.detectorList[48].name = 'N18'
2970# Pixel size in the x dimension in mm
2971config.detectorList[48].pixelSize_x = 0.015
2973# Name of native coordinate system
2974config.detectorList[48].transformDict.nativeSys = 'Pixels'
2976config.detectorList[48].transformDict.transforms = None
2977# x position of the reference point in the detector in pixels in transposed coordinates.
2978config.detectorList[48].refpos_x = 1023.5
2980# y position of the reference point in the detector in pixels in transposed coordinates.
2981config.detectorList[48].refpos_y = 2047.5
2983# Pixel size in the y dimension in mm
2984config.detectorList[48].pixelSize_y = 0.015
2986# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
2987config.detectorList[48].detectorType = 0
2989# x offset from the origin of the camera in mm in the transposed system.
2990config.detectorList[48].offset_x = 84.388
2992# y offset from the origin of the camera in mm in the transposed system.
2993config.detectorList[48].offset_y = 95.663
2995# Transpose the pixel grid before orienting in focal plane?
2996config.detectorList[48].transposeDetector = False
2998# yaw (rotation about z) of the detector in degrees. This includes any
2999# necessary rotation to go from detector coordinates to camera coordinates
3000# after optional transposition.
3001config.detectorList[48].yawDeg = 0.012
3003# roll (rotation about x) of the detector in degrees
3004config.detectorList[48].rollDeg = 0.0
3006# Serial string associated with this specific detector
3007config.detectorList[48].serial = '49'
3009# pitch (rotation about y) of the detector in degrees
3010config.detectorList[48].pitchDeg = 0.0
3012# ID of detector slot
3013config.detectorList[48].id = 49
3015config.detectorList[49] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
3016# y0 of pixel bounding box
3017config.detectorList[49].bbox_y0 = 0
3019# y1 of pixel bounding box
3020config.detectorList[49].bbox_y1 = 4095
3022# x1 of pixel bounding box
3023config.detectorList[49].bbox_x1 = 2047
3025# x0 of pixel bounding box
3026config.detectorList[49].bbox_x0 = 0
3028# Name of detector slot
3029config.detectorList[49].name = 'N19'
3031# Pixel size in the x dimension in mm
3032config.detectorList[49].pixelSize_x = 0.015
3034# Name of native coordinate system
3035config.detectorList[49].transformDict.nativeSys = 'Pixels'
3037config.detectorList[49].transformDict.transforms = None
3038# x position of the reference point in the detector in pixels in transposed coordinates.
3039config.detectorList[49].refpos_x = 1023.5
3041# y position of the reference point in the detector in pixels in transposed coordinates.
3042config.detectorList[49].refpos_y = 2047.5
3044# Pixel size in the y dimension in mm
3045config.detectorList[49].pixelSize_y = 0.015
3047# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
3048config.detectorList[49].detectorType = 0
3050# x offset from the origin of the camera in mm in the transposed system.
3051config.detectorList[49].offset_x = 84.30799999999999
3053# y offset from the origin of the camera in mm in the transposed system.
3054config.detectorList[49].offset_y = 159.357
3056# Transpose the pixel grid before orienting in focal plane?
3057config.detectorList[49].transposeDetector = False
3059# yaw (rotation about z) of the detector in degrees. This includes any
3060# necessary rotation to go from detector coordinates to camera coordinates
3061# after optional transposition.
3062config.detectorList[49].yawDeg = 0.006
3064# roll (rotation about x) of the detector in degrees
3065config.detectorList[49].rollDeg = 0.0
3067# Serial string associated with this specific detector
3068config.detectorList[49].serial = '50'
3070# pitch (rotation about y) of the detector in degrees
3071config.detectorList[49].pitchDeg = 0.0
3073# ID of detector slot
3074config.detectorList[49].id = 50
3076config.detectorList[50] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
3077# y0 of pixel bounding box
3078config.detectorList[50].bbox_y0 = 0
3080# y1 of pixel bounding box
3081config.detectorList[50].bbox_y1 = 4095
3083# x1 of pixel bounding box
3084config.detectorList[50].bbox_x1 = 2047
3086# x0 of pixel bounding box
3087config.detectorList[50].bbox_x0 = 0
3089# Name of detector slot
3090config.detectorList[50].name = 'N20'
3092# Pixel size in the x dimension in mm
3093config.detectorList[50].pixelSize_x = 0.015
3095# Name of native coordinate system
3096config.detectorList[50].transformDict.nativeSys = 'Pixels'
3098config.detectorList[50].transformDict.transforms = None
3099# x position of the reference point in the detector in pixels in transposed coordinates.
3100config.detectorList[50].refpos_x = 1023.5
3102# y position of the reference point in the detector in pixels in transposed coordinates.
3103config.detectorList[50].refpos_y = 2047.5
3105# Pixel size in the y dimension in mm
3106config.detectorList[50].pixelSize_y = 0.015
3108# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
3109config.detectorList[50].detectorType = 0
3111# x offset from the origin of the camera in mm in the transposed system.
3112config.detectorList[50].offset_x = 118.086
3114# y offset from the origin of the camera in mm in the transposed system.
3115config.detectorList[50].offset_y = -127.458
3117# Transpose the pixel grid before orienting in focal plane?
3118config.detectorList[50].transposeDetector = False
3120# yaw (rotation about z) of the detector in degrees. This includes any
3121# necessary rotation to go from detector coordinates to camera coordinates
3122# after optional transposition.
3123config.detectorList[50].yawDeg = -0.018
3125# roll (rotation about x) of the detector in degrees
3126config.detectorList[50].rollDeg = 0.0
3128# Serial string associated with this specific detector
3129config.detectorList[50].serial = '51'
3131# pitch (rotation about y) of the detector in degrees
3132config.detectorList[50].pitchDeg = 0.0
3134# ID of detector slot
3135config.detectorList[50].id = 51
3137config.detectorList[51] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
3138# y0 of pixel bounding box
3139config.detectorList[51].bbox_y0 = 0
3141# y1 of pixel bounding box
3142config.detectorList[51].bbox_y1 = 4095
3144# x1 of pixel bounding box
3145config.detectorList[51].bbox_x1 = 2047
3147# x0 of pixel bounding box
3148config.detectorList[51].bbox_x0 = 0
3150# Name of detector slot
3151config.detectorList[51].name = 'N21'
3153# Pixel size in the x dimension in mm
3154config.detectorList[51].pixelSize_x = 0.015
3156# Name of native coordinate system
3157config.detectorList[51].transformDict.nativeSys = 'Pixels'
3159config.detectorList[51].transformDict.transforms = None
3160# x position of the reference point in the detector in pixels in transposed coordinates.
3161config.detectorList[51].refpos_x = 1023.5
3163# y position of the reference point in the detector in pixels in transposed coordinates.
3164config.detectorList[51].refpos_y = 2047.5
3166# Pixel size in the y dimension in mm
3167config.detectorList[51].pixelSize_y = 0.015
3169# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
3170config.detectorList[51].detectorType = 0
3172# x offset from the origin of the camera in mm in the transposed system.
3173config.detectorList[51].offset_x = 118.086
3175# y offset from the origin of the camera in mm in the transposed system.
3176config.detectorList[51].offset_y = -63.762
3178# Transpose the pixel grid before orienting in focal plane?
3179config.detectorList[51].transposeDetector = False
3181# yaw (rotation about z) of the detector in degrees. This includes any
3182# necessary rotation to go from detector coordinates to camera coordinates
3183# after optional transposition.
3184config.detectorList[51].yawDeg = -0.007
3186# roll (rotation about x) of the detector in degrees
3187config.detectorList[51].rollDeg = 0.0
3189# Serial string associated with this specific detector
3190config.detectorList[51].serial = '52'
3192# pitch (rotation about y) of the detector in degrees
3193config.detectorList[51].pitchDeg = 0.0
3195# ID of detector slot
3196config.detectorList[51].id = 52
3198config.detectorList[52] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
3199# y0 of pixel bounding box
3200config.detectorList[52].bbox_y0 = 0
3202# y1 of pixel bounding box
3203config.detectorList[52].bbox_y1 = 4095
3205# x1 of pixel bounding box
3206config.detectorList[52].bbox_x1 = 2047
3208# x0 of pixel bounding box
3209config.detectorList[52].bbox_x0 = 0
3211# Name of detector slot
3212config.detectorList[52].name = 'N22'
3214# Pixel size in the x dimension in mm
3215config.detectorList[52].pixelSize_x = 0.015
3217# Name of native coordinate system
3218config.detectorList[52].transformDict.nativeSys = 'Pixels'
3220config.detectorList[52].transformDict.transforms = None
3221# x position of the reference point in the detector in pixels in transposed coordinates.
3222config.detectorList[52].refpos_x = 1023.5
3224# y position of the reference point in the detector in pixels in transposed coordinates.
3225config.detectorList[52].refpos_y = 2047.5
3227# Pixel size in the y dimension in mm
3228config.detectorList[52].pixelSize_y = 0.015
3230# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
3231config.detectorList[52].detectorType = 0
3233# x offset from the origin of the camera in mm in the transposed system.
3234config.detectorList[52].offset_x = 118.09
3236# y offset from the origin of the camera in mm in the transposed system.
3237config.detectorList[52].offset_y = 0.049999999999998934
3239# Transpose the pixel grid before orienting in focal plane?
3240config.detectorList[52].transposeDetector = False
3242# yaw (rotation about z) of the detector in degrees. This includes any
3243# necessary rotation to go from detector coordinates to camera coordinates
3244# after optional transposition.
3245config.detectorList[52].yawDeg = -0.008
3247# roll (rotation about x) of the detector in degrees
3248config.detectorList[52].rollDeg = 0.0
3250# Serial string associated with this specific detector
3251config.detectorList[52].serial = '53'
3253# pitch (rotation about y) of the detector in degrees
3254config.detectorList[52].pitchDeg = 0.0
3256# ID of detector slot
3257config.detectorList[52].id = 53
3259config.detectorList[53] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
3260# y0 of pixel bounding box
3261config.detectorList[53].bbox_y0 = 0
3263# y1 of pixel bounding box
3264config.detectorList[53].bbox_y1 = 4095
3266# x1 of pixel bounding box
3267config.detectorList[53].bbox_x1 = 2047
3269# x0 of pixel bounding box
3270config.detectorList[53].bbox_x0 = 0
3272# Name of detector slot
3273config.detectorList[53].name = 'N23'
3275# Pixel size in the x dimension in mm
3276config.detectorList[53].pixelSize_x = 0.015
3278# Name of native coordinate system
3279config.detectorList[53].transformDict.nativeSys = 'Pixels'
3281config.detectorList[53].transformDict.transforms = None
3282# x position of the reference point in the detector in pixels in transposed coordinates.
3283config.detectorList[53].refpos_x = 1023.5
3285# y position of the reference point in the detector in pixels in transposed coordinates.
3286config.detectorList[53].refpos_y = 2047.5
3288# Pixel size in the y dimension in mm
3289config.detectorList[53].pixelSize_y = 0.015
3291# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
3292config.detectorList[53].detectorType = 0
3294# x offset from the origin of the camera in mm in the transposed system.
3295config.detectorList[53].offset_x = 118.166
3297# y offset from the origin of the camera in mm in the transposed system.
3298config.detectorList[53].offset_y = 63.754000000000005
3300# Transpose the pixel grid before orienting in focal plane?
3301config.detectorList[53].transposeDetector = False
3303# yaw (rotation about z) of the detector in degrees. This includes any
3304# necessary rotation to go from detector coordinates to camera coordinates
3305# after optional transposition.
3306config.detectorList[53].yawDeg = 0.006
3308# roll (rotation about x) of the detector in degrees
3309config.detectorList[53].rollDeg = 0.0
3311# Serial string associated with this specific detector
3312config.detectorList[53].serial = '54'
3314# pitch (rotation about y) of the detector in degrees
3315config.detectorList[53].pitchDeg = 0.0
3317# ID of detector slot
3318config.detectorList[53].id = 54
3320config.detectorList[54] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
3321# y0 of pixel bounding box
3322config.detectorList[54].bbox_y0 = 0
3324# y1 of pixel bounding box
3325config.detectorList[54].bbox_y1 = 4095
3327# x1 of pixel bounding box
3328config.detectorList[54].bbox_x1 = 2047
3330# x0 of pixel bounding box
3331config.detectorList[54].bbox_x0 = 0
3333# Name of detector slot
3334config.detectorList[54].name = 'N24'
3336# Pixel size in the x dimension in mm
3337config.detectorList[54].pixelSize_x = 0.015
3339# Name of native coordinate system
3340config.detectorList[54].transformDict.nativeSys = 'Pixels'
3342config.detectorList[54].transformDict.transforms = None
3343# x position of the reference point in the detector in pixels in transposed coordinates.
3344config.detectorList[54].refpos_x = 1023.5
3346# y position of the reference point in the detector in pixels in transposed coordinates.
3347config.detectorList[54].refpos_y = 2047.5
3349# Pixel size in the y dimension in mm
3350config.detectorList[54].pixelSize_y = 0.015
3352# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
3353config.detectorList[54].detectorType = 0
3355# x offset from the origin of the camera in mm in the transposed system.
3356config.detectorList[54].offset_x = 118.074
3358# y offset from the origin of the camera in mm in the transposed system.
3359config.detectorList[54].offset_y = 127.464
3361# Transpose the pixel grid before orienting in focal plane?
3362config.detectorList[54].transposeDetector = False
3364# yaw (rotation about z) of the detector in degrees. This includes any
3365# necessary rotation to go from detector coordinates to camera coordinates
3366# after optional transposition.
3367config.detectorList[54].yawDeg = 0.01
3369# roll (rotation about x) of the detector in degrees
3370config.detectorList[54].rollDeg = 0.0
3372# Serial string associated with this specific detector
3373config.detectorList[54].serial = '55'
3375# pitch (rotation about y) of the detector in degrees
3376config.detectorList[54].pitchDeg = 0.0
3378# ID of detector slot
3379config.detectorList[54].id = 55
3381config.detectorList[55] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
3382# y0 of pixel bounding box
3383config.detectorList[55].bbox_y0 = 0
3385# y1 of pixel bounding box
3386config.detectorList[55].bbox_y1 = 4095
3388# x1 of pixel bounding box
3389config.detectorList[55].bbox_x1 = 2047
3391# x0 of pixel bounding box
3392config.detectorList[55].bbox_x0 = 0
3394# Name of detector slot
3395config.detectorList[55].name = 'N25'
3397# Pixel size in the x dimension in mm
3398config.detectorList[55].pixelSize_x = 0.015
3400# Name of native coordinate system
3401config.detectorList[55].transformDict.nativeSys = 'Pixels'
3403config.detectorList[55].transformDict.transforms = None
3404# x position of the reference point in the detector in pixels in transposed coordinates.
3405config.detectorList[55].refpos_x = 1023.5
3407# y position of the reference point in the detector in pixels in transposed coordinates.
3408config.detectorList[55].refpos_y = 2047.5
3410# Pixel size in the y dimension in mm
3411config.detectorList[55].pixelSize_y = 0.015
3413# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
3414config.detectorList[55].detectorType = 0
3416# x offset from the origin of the camera in mm in the transposed system.
3417config.detectorList[55].offset_x = 151.808
3419# y offset from the origin of the camera in mm in the transposed system.
3420config.detectorList[55].offset_y = -95.587
3422# Transpose the pixel grid before orienting in focal plane?
3423config.detectorList[55].transposeDetector = False
3425# yaw (rotation about z) of the detector in degrees. This includes any
3426# necessary rotation to go from detector coordinates to camera coordinates
3427# after optional transposition.
3428config.detectorList[55].yawDeg = -0.008
3430# roll (rotation about x) of the detector in degrees
3431config.detectorList[55].rollDeg = 0.0
3433# Serial string associated with this specific detector
3434config.detectorList[55].serial = '56'
3436# pitch (rotation about y) of the detector in degrees
3437config.detectorList[55].pitchDeg = 0.0
3439# ID of detector slot
3440config.detectorList[55].id = 56
3442config.detectorList[56] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
3443# y0 of pixel bounding box
3444config.detectorList[56].bbox_y0 = 0
3446# y1 of pixel bounding box
3447config.detectorList[56].bbox_y1 = 4095
3449# x1 of pixel bounding box
3450config.detectorList[56].bbox_x1 = 2047
3452# x0 of pixel bounding box
3453config.detectorList[56].bbox_x0 = 0
3455# Name of detector slot
3456config.detectorList[56].name = 'N26'
3458# Pixel size in the x dimension in mm
3459config.detectorList[56].pixelSize_x = 0.015
3461# Name of native coordinate system
3462config.detectorList[56].transformDict.nativeSys = 'Pixels'
3464config.detectorList[56].transformDict.transforms = None
3465# x position of the reference point in the detector in pixels in transposed coordinates.
3466config.detectorList[56].refpos_x = 1023.5
3468# y position of the reference point in the detector in pixels in transposed coordinates.
3469config.detectorList[56].refpos_y = 2047.5
3471# Pixel size in the y dimension in mm
3472config.detectorList[56].pixelSize_y = 0.015
3474# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
3475config.detectorList[56].detectorType = 0
3477# x offset from the origin of the camera in mm in the transposed system.
3478config.detectorList[56].offset_x = 151.8
3480# y offset from the origin of the camera in mm in the transposed system.
3481config.detectorList[56].offset_y = -31.935000000000002
3483# Transpose the pixel grid before orienting in focal plane?
3484config.detectorList[56].transposeDetector = False
3486# yaw (rotation about z) of the detector in degrees. This includes any
3487# necessary rotation to go from detector coordinates to camera coordinates
3488# after optional transposition.
3489config.detectorList[56].yawDeg = 0.0
3491# roll (rotation about x) of the detector in degrees
3492config.detectorList[56].rollDeg = 0.0
3494# Serial string associated with this specific detector
3495config.detectorList[56].serial = '57'
3497# pitch (rotation about y) of the detector in degrees
3498config.detectorList[56].pitchDeg = 0.0
3500# ID of detector slot
3501config.detectorList[56].id = 57
3503config.detectorList[57] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
3504# y0 of pixel bounding box
3505config.detectorList[57].bbox_y0 = 0
3507# y1 of pixel bounding box
3508config.detectorList[57].bbox_y1 = 4095
3510# x1 of pixel bounding box
3511config.detectorList[57].bbox_x1 = 2047
3513# x0 of pixel bounding box
3514config.detectorList[57].bbox_x0 = 0
3516# Name of detector slot
3517config.detectorList[57].name = 'N27'
3519# Pixel size in the x dimension in mm
3520config.detectorList[57].pixelSize_x = 0.015
3522# Name of native coordinate system
3523config.detectorList[57].transformDict.nativeSys = 'Pixels'
3525config.detectorList[57].transformDict.transforms = None
3526# x position of the reference point in the detector in pixels in transposed coordinates.
3527config.detectorList[57].refpos_x = 1023.5
3529# y position of the reference point in the detector in pixels in transposed coordinates.
3530config.detectorList[57].refpos_y = 2047.5
3532# Pixel size in the y dimension in mm
3533config.detectorList[57].pixelSize_y = 0.015
3535# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
3536config.detectorList[57].detectorType = 0
3538# x offset from the origin of the camera in mm in the transposed system.
3539config.detectorList[57].offset_x = 151.86
3541# y offset from the origin of the camera in mm in the transposed system.
3542config.detectorList[57].offset_y = 31.847
3544# Transpose the pixel grid before orienting in focal plane?
3545config.detectorList[57].transposeDetector = False
3547# yaw (rotation about z) of the detector in degrees. This includes any
3548# necessary rotation to go from detector coordinates to camera coordinates
3549# after optional transposition.
3550config.detectorList[57].yawDeg = 0.039
3552# roll (rotation about x) of the detector in degrees
3553config.detectorList[57].rollDeg = 0.0
3555# Serial string associated with this specific detector
3556config.detectorList[57].serial = '58'
3558# pitch (rotation about y) of the detector in degrees
3559config.detectorList[57].pitchDeg = 0.0
3561# ID of detector slot
3562config.detectorList[57].id = 58
3564config.detectorList[58] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
3565# y0 of pixel bounding box
3566config.detectorList[58].bbox_y0 = 0
3568# y1 of pixel bounding box
3569config.detectorList[58].bbox_y1 = 4095
3571# x1 of pixel bounding box
3572config.detectorList[58].bbox_x1 = 2047
3574# x0 of pixel bounding box
3575config.detectorList[58].bbox_x0 = 0
3577# Name of detector slot
3578config.detectorList[58].name = 'N28'
3580# Pixel size in the x dimension in mm
3581config.detectorList[58].pixelSize_x = 0.015
3583# Name of native coordinate system
3584config.detectorList[58].transformDict.nativeSys = 'Pixels'
3586config.detectorList[58].transformDict.transforms = None
3587# x position of the reference point in the detector in pixels in transposed coordinates.
3588config.detectorList[58].refpos_x = 1023.5
3590# y position of the reference point in the detector in pixels in transposed coordinates.
3591config.detectorList[58].refpos_y = 2047.5
3593# Pixel size in the y dimension in mm
3594config.detectorList[58].pixelSize_y = 0.015
3596# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
3597config.detectorList[58].detectorType = 0
3599# x offset from the origin of the camera in mm in the transposed system.
3600config.detectorList[58].offset_x = 151.79399999999998
3602# y offset from the origin of the camera in mm in the transposed system.
3603config.detectorList[58].offset_y = 95.557
3605# Transpose the pixel grid before orienting in focal plane?
3606config.detectorList[58].transposeDetector = False
3608# yaw (rotation about z) of the detector in degrees. This includes any
3609# necessary rotation to go from detector coordinates to camera coordinates
3610# after optional transposition.
3611config.detectorList[58].yawDeg = 0.021
3613# roll (rotation about x) of the detector in degrees
3614config.detectorList[58].rollDeg = 0.0
3616# Serial string associated with this specific detector
3617config.detectorList[58].serial = '59'
3619# pitch (rotation about y) of the detector in degrees
3620config.detectorList[58].pitchDeg = 0.0
3622# ID of detector slot
3623config.detectorList[58].id = 59
3625config.detectorList[59] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
3626# y0 of pixel bounding box
3627config.detectorList[59].bbox_y0 = 0
3629# y1 of pixel bounding box
3630config.detectorList[59].bbox_y1 = 4095
3632# x1 of pixel bounding box
3633config.detectorList[59].bbox_x1 = 2047
3635# x0 of pixel bounding box
3636config.detectorList[59].bbox_x0 = 0
3638# Name of detector slot
3639config.detectorList[59].name = 'N29'
3641# Pixel size in the x dimension in mm
3642config.detectorList[59].pixelSize_x = 0.015
3644# Name of native coordinate system
3645config.detectorList[59].transformDict.nativeSys = 'Pixels'
3647config.detectorList[59].transformDict.transforms = None
3648# x position of the reference point in the detector in pixels in transposed coordinates.
3649config.detectorList[59].refpos_x = 1023.5
3651# y position of the reference point in the detector in pixels in transposed coordinates.
3652config.detectorList[59].refpos_y = 2047.5
3654# Pixel size in the y dimension in mm
3655config.detectorList[59].pixelSize_y = 0.015
3657# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
3658config.detectorList[59].detectorType = 0
3660# x offset from the origin of the camera in mm in the transposed system.
3661config.detectorList[59].offset_x = 185.558
3663# y offset from the origin of the camera in mm in the transposed system.
3664config.detectorList[59].offset_y = -63.732
3666# Transpose the pixel grid before orienting in focal plane?
3667config.detectorList[59].transposeDetector = False
3669# yaw (rotation about z) of the detector in degrees. This includes any
3670# necessary rotation to go from detector coordinates to camera coordinates
3671# after optional transposition.
3672config.detectorList[59].yawDeg = -0.012
3674# roll (rotation about x) of the detector in degrees
3675config.detectorList[59].rollDeg = 0.0
3677# Serial string associated with this specific detector
3678config.detectorList[59].serial = '60'
3680# pitch (rotation about y) of the detector in degrees
3681config.detectorList[59].pitchDeg = 0.0
3683# ID of detector slot
3684config.detectorList[59].id = 60
3686config.detectorList[60] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
3687# y0 of pixel bounding box
3688config.detectorList[60].bbox_y0 = 0
3690# y1 of pixel bounding box
3691config.detectorList[60].bbox_y1 = 4095
3693# x1 of pixel bounding box
3694config.detectorList[60].bbox_x1 = 2047
3696# x0 of pixel bounding box
3697config.detectorList[60].bbox_x0 = 0
3699# Name of detector slot
3700config.detectorList[60].name = 'N30'
3702# Pixel size in the x dimension in mm
3703config.detectorList[60].pixelSize_x = 0.015
3705# Name of native coordinate system
3706config.detectorList[60].transformDict.nativeSys = 'Pixels'
3708config.detectorList[60].transformDict.transforms = None
3709# x position of the reference point in the detector in pixels in transposed coordinates.
3710config.detectorList[60].refpos_x = 1023.5
3712# y position of the reference point in the detector in pixels in transposed coordinates.
3713config.detectorList[60].refpos_y = 2047.5
3715# Pixel size in the y dimension in mm
3716config.detectorList[60].pixelSize_y = 0.015
3718# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
3719config.detectorList[60].detectorType = 0
3721# x offset from the origin of the camera in mm in the transposed system.
3722config.detectorList[60].offset_x = 185.50400000000002
3724# y offset from the origin of the camera in mm in the transposed system.
3725config.detectorList[60].offset_y = 0.016000000000000014
3727# Transpose the pixel grid before orienting in focal plane?
3728config.detectorList[60].transposeDetector = False
3730# yaw (rotation about z) of the detector in degrees. This includes any
3731# necessary rotation to go from detector coordinates to camera coordinates
3732# after optional transposition.
3733config.detectorList[60].yawDeg = 0.0
3735# roll (rotation about x) of the detector in degrees
3736config.detectorList[60].rollDeg = 0.0
3738# Serial string associated with this specific detector
3739config.detectorList[60].serial = '61'
3741# pitch (rotation about y) of the detector in degrees
3742config.detectorList[60].pitchDeg = 0.0
3744# ID of detector slot
3745config.detectorList[60].id = 61
3747config.detectorList[61] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
3748# y0 of pixel bounding box
3749config.detectorList[61].bbox_y0 = 0
3751# y1 of pixel bounding box
3752config.detectorList[61].bbox_y1 = 4095
3754# x1 of pixel bounding box
3755config.detectorList[61].bbox_x1 = 2047
3757# x0 of pixel bounding box
3758config.detectorList[61].bbox_x0 = 0
3760# Name of detector slot
3761config.detectorList[61].name = 'N31'
3763# Pixel size in the x dimension in mm
3764config.detectorList[61].pixelSize_x = 0.015
3766# Name of native coordinate system
3767config.detectorList[61].transformDict.nativeSys = 'Pixels'
3769config.detectorList[61].transformDict.transforms = None
3770# x position of the reference point in the detector in pixels in transposed coordinates.
3771config.detectorList[61].refpos_x = 1023.5
3773# y position of the reference point in the detector in pixels in transposed coordinates.
3774config.detectorList[61].refpos_y = 2047.5
3776# Pixel size in the y dimension in mm
3777config.detectorList[61].pixelSize_y = 0.015
3779# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
3780config.detectorList[61].detectorType = 0
3782# x offset from the origin of the camera in mm in the transposed system.
3783config.detectorList[61].offset_x = 185.55
3785# y offset from the origin of the camera in mm in the transposed system.
3786config.detectorList[61].offset_y = 63.794
3788# Transpose the pixel grid before orienting in focal plane?
3789config.detectorList[61].transposeDetector = False
3791# yaw (rotation about z) of the detector in degrees. This includes any
3792# necessary rotation to go from detector coordinates to camera coordinates
3793# after optional transposition.
3794config.detectorList[61].yawDeg = -0.026
3796# roll (rotation about x) of the detector in degrees
3797config.detectorList[61].rollDeg = 0.0
3799# Serial string associated with this specific detector
3800config.detectorList[61].serial = '62'
3802# pitch (rotation about y) of the detector in degrees
3803config.detectorList[61].pitchDeg = 0.0
3805# ID of detector slot
3806config.detectorList[61].id = 62
3808# Coefficients for radial distortion
3809config.radialCoeffs = None
3811# Name of this camera
3812config.name = 'DECam'