Coverage for description/camera/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 = 16.5
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 = None
23config.transformDict.transforms['FieldAngle'].transform['inverted'].transform.retarget(target=lsst.afw.geom.transformRegistry['radial'])
24# Coefficients for the radial polynomial; coeff[0] must be 0
25config.transformDict.transforms['FieldAngle'].transform['inverted'].transform.coeffs = [0.0, 12500.89734830887]
27config.transformDict.transforms['FieldAngle'].transform.name = 'inverted'
28config.detectorList = {}
29config.detectorList[0] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
30# y0 of pixel bounding box
31config.detectorList[0].bbox_y0 = 0
33# y1 of pixel bounding box
34config.detectorList[0].bbox_y1 = 1360
36# x1 of pixel bounding box
37config.detectorList[0].bbox_x1 = 2047
39# x0 of pixel bounding box
40config.detectorList[0].bbox_x0 = 0
42# Name of detector slot
43config.detectorList[0].name = 'g1'
45# Pixel size in the x dimension in mm
46config.detectorList[0].pixelSize_x = 0.024
48# Name of native coordinate system
49config.detectorList[0].transformDict.nativeSys = 'Pixels'
51config.detectorList[0].transformDict.transforms = None
52# x position of the reference point in the detector in pixels in transposed coordinates.
53config.detectorList[0].refpos_x = 1023.5
55# y position of the reference point in the detector in pixels in transposed coordinates.
56config.detectorList[0].refpos_y = 680.0
58# Pixel size in the y dimension in mm
59config.detectorList[0].pixelSize_y = 0.024
61# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
62config.detectorList[0].detectorType = 0
64# x offset from the origin of the camera in mm in the transposed system.
65config.detectorList[0].offset_x = 158.75
67# y offset from the origin of the camera in mm in the transposed system.
68config.detectorList[0].offset_y = 106.67999999999999
70# Transpose the pixel grid before orienting in focal plane?
71config.detectorList[0].transposeDetector = False
73# yaw (rotation about z) of the detector in degrees. This includes any
74# necessary rotation to go from detector coordinates to camera coordinates
75# after optional transposition.
76config.detectorList[0].yawDeg = 0.0
78# roll (rotation about x) of the detector in degrees
79config.detectorList[0].rollDeg = 0.0
81# Serial string associated with this specific detector
82config.detectorList[0].serial = 'g1'
84# pitch (rotation about y) of the detector in degrees
85config.detectorList[0].pitchDeg = 0.0
87# ID of detector slot
88config.detectorList[0].id = 0
90config.detectorList[1] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
91# y0 of pixel bounding box
92config.detectorList[1].bbox_y0 = 0
94# y1 of pixel bounding box
95config.detectorList[1].bbox_y1 = 1360
97# x1 of pixel bounding box
98config.detectorList[1].bbox_x1 = 2047
100# x0 of pixel bounding box
101config.detectorList[1].bbox_x0 = 0
103# Name of detector slot
104config.detectorList[1].name = 'z1'
106# Pixel size in the x dimension in mm
107config.detectorList[1].pixelSize_x = 0.024
109# Name of native coordinate system
110config.detectorList[1].transformDict.nativeSys = 'Pixels'
112config.detectorList[1].transformDict.transforms = None
113# x position of the reference point in the detector in pixels in transposed coordinates.
114config.detectorList[1].refpos_x = 1023.5
116# y position of the reference point in the detector in pixels in transposed coordinates.
117config.detectorList[1].refpos_y = 680.0
119# Pixel size in the y dimension in mm
120config.detectorList[1].pixelSize_y = 0.024
122# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
123config.detectorList[1].detectorType = 0
125# x offset from the origin of the camera in mm in the transposed system.
126config.detectorList[1].offset_x = 158.75
128# y offset from the origin of the camera in mm in the transposed system.
129config.detectorList[1].offset_y = 53.339999999999996
131# Transpose the pixel grid before orienting in focal plane?
132config.detectorList[1].transposeDetector = False
134# yaw (rotation about z) of the detector in degrees. This includes any
135# necessary rotation to go from detector coordinates to camera coordinates
136# after optional transposition.
137config.detectorList[1].yawDeg = 0.0
139# roll (rotation about x) of the detector in degrees
140config.detectorList[1].rollDeg = 0.0
142# Serial string associated with this specific detector
143config.detectorList[1].serial = 'z1'
145# pitch (rotation about y) of the detector in degrees
146config.detectorList[1].pitchDeg = 0.0
148# ID of detector slot
149config.detectorList[1].id = 1
151config.detectorList[2] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
152# y0 of pixel bounding box
153config.detectorList[2].bbox_y0 = 0
155# y1 of pixel bounding box
156config.detectorList[2].bbox_y1 = 1360
158# x1 of pixel bounding box
159config.detectorList[2].bbox_x1 = 2047
161# x0 of pixel bounding box
162config.detectorList[2].bbox_x0 = 0
164# Name of detector slot
165config.detectorList[2].name = 'u1'
167# Pixel size in the x dimension in mm
168config.detectorList[2].pixelSize_x = 0.024
170# Name of native coordinate system
171config.detectorList[2].transformDict.nativeSys = 'Pixels'
173config.detectorList[2].transformDict.transforms = None
174# x position of the reference point in the detector in pixels in transposed coordinates.
175config.detectorList[2].refpos_x = 1023.5
177# y position of the reference point in the detector in pixels in transposed coordinates.
178config.detectorList[2].refpos_y = 680.0
180# Pixel size in the y dimension in mm
181config.detectorList[2].pixelSize_y = 0.024
183# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
184config.detectorList[2].detectorType = 0
186# x offset from the origin of the camera in mm in the transposed system.
187config.detectorList[2].offset_x = 158.75
189# y offset from the origin of the camera in mm in the transposed system.
190config.detectorList[2].offset_y = 0.0
192# Transpose the pixel grid before orienting in focal plane?
193config.detectorList[2].transposeDetector = False
195# yaw (rotation about z) of the detector in degrees. This includes any
196# necessary rotation to go from detector coordinates to camera coordinates
197# after optional transposition.
198config.detectorList[2].yawDeg = 0.0
200# roll (rotation about x) of the detector in degrees
201config.detectorList[2].rollDeg = 0.0
203# Serial string associated with this specific detector
204config.detectorList[2].serial = 'u1'
206# pitch (rotation about y) of the detector in degrees
207config.detectorList[2].pitchDeg = 0.0
209# ID of detector slot
210config.detectorList[2].id = 2
212config.detectorList[3] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
213# y0 of pixel bounding box
214config.detectorList[3].bbox_y0 = 0
216# y1 of pixel bounding box
217config.detectorList[3].bbox_y1 = 1360
219# x1 of pixel bounding box
220config.detectorList[3].bbox_x1 = 2047
222# x0 of pixel bounding box
223config.detectorList[3].bbox_x0 = 0
225# Name of detector slot
226config.detectorList[3].name = 'i1'
228# Pixel size in the x dimension in mm
229config.detectorList[3].pixelSize_x = 0.024
231# Name of native coordinate system
232config.detectorList[3].transformDict.nativeSys = 'Pixels'
234config.detectorList[3].transformDict.transforms = None
235# x position of the reference point in the detector in pixels in transposed coordinates.
236config.detectorList[3].refpos_x = 1023.5
238# y position of the reference point in the detector in pixels in transposed coordinates.
239config.detectorList[3].refpos_y = 680.0
241# Pixel size in the y dimension in mm
242config.detectorList[3].pixelSize_y = 0.024
244# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
245config.detectorList[3].detectorType = 0
247# x offset from the origin of the camera in mm in the transposed system.
248config.detectorList[3].offset_x = 158.75
250# y offset from the origin of the camera in mm in the transposed system.
251config.detectorList[3].offset_y = -53.339999999999996
253# Transpose the pixel grid before orienting in focal plane?
254config.detectorList[3].transposeDetector = False
256# yaw (rotation about z) of the detector in degrees. This includes any
257# necessary rotation to go from detector coordinates to camera coordinates
258# after optional transposition.
259config.detectorList[3].yawDeg = 0.0
261# roll (rotation about x) of the detector in degrees
262config.detectorList[3].rollDeg = 0.0
264# Serial string associated with this specific detector
265config.detectorList[3].serial = 'i1'
267# pitch (rotation about y) of the detector in degrees
268config.detectorList[3].pitchDeg = 0.0
270# ID of detector slot
271config.detectorList[3].id = 3
273config.detectorList[4] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
274# y0 of pixel bounding box
275config.detectorList[4].bbox_y0 = 0
277# y1 of pixel bounding box
278config.detectorList[4].bbox_y1 = 1360
280# x1 of pixel bounding box
281config.detectorList[4].bbox_x1 = 2047
283# x0 of pixel bounding box
284config.detectorList[4].bbox_x0 = 0
286# Name of detector slot
287config.detectorList[4].name = 'r1'
289# Pixel size in the x dimension in mm
290config.detectorList[4].pixelSize_x = 0.024
292# Name of native coordinate system
293config.detectorList[4].transformDict.nativeSys = 'Pixels'
295config.detectorList[4].transformDict.transforms = None
296# x position of the reference point in the detector in pixels in transposed coordinates.
297config.detectorList[4].refpos_x = 1023.5
299# y position of the reference point in the detector in pixels in transposed coordinates.
300config.detectorList[4].refpos_y = 680.0
302# Pixel size in the y dimension in mm
303config.detectorList[4].pixelSize_y = 0.024
305# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
306config.detectorList[4].detectorType = 0
308# x offset from the origin of the camera in mm in the transposed system.
309config.detectorList[4].offset_x = 158.75
311# y offset from the origin of the camera in mm in the transposed system.
312config.detectorList[4].offset_y = -106.67999999999999
314# Transpose the pixel grid before orienting in focal plane?
315config.detectorList[4].transposeDetector = False
317# yaw (rotation about z) of the detector in degrees. This includes any
318# necessary rotation to go from detector coordinates to camera coordinates
319# after optional transposition.
320config.detectorList[4].yawDeg = 0.0
322# roll (rotation about x) of the detector in degrees
323config.detectorList[4].rollDeg = 0.0
325# Serial string associated with this specific detector
326config.detectorList[4].serial = 'r1'
328# pitch (rotation about y) of the detector in degrees
329config.detectorList[4].pitchDeg = 0.0
331# ID of detector slot
332config.detectorList[4].id = 4
334config.detectorList[5] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
335# y0 of pixel bounding box
336config.detectorList[5].bbox_y0 = 0
338# y1 of pixel bounding box
339config.detectorList[5].bbox_y1 = 1360
341# x1 of pixel bounding box
342config.detectorList[5].bbox_x1 = 2047
344# x0 of pixel bounding box
345config.detectorList[5].bbox_x0 = 0
347# Name of detector slot
348config.detectorList[5].name = 'g2'
350# Pixel size in the x dimension in mm
351config.detectorList[5].pixelSize_x = 0.024
353# Name of native coordinate system
354config.detectorList[5].transformDict.nativeSys = 'Pixels'
356config.detectorList[5].transformDict.transforms = None
357# x position of the reference point in the detector in pixels in transposed coordinates.
358config.detectorList[5].refpos_x = 1023.5
360# y position of the reference point in the detector in pixels in transposed coordinates.
361config.detectorList[5].refpos_y = 680.0
363# Pixel size in the y dimension in mm
364config.detectorList[5].pixelSize_y = 0.024
366# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
367config.detectorList[5].detectorType = 0
369# x offset from the origin of the camera in mm in the transposed system.
370config.detectorList[5].offset_x = 95.25
372# y offset from the origin of the camera in mm in the transposed system.
373config.detectorList[5].offset_y = 106.67999999999999
375# Transpose the pixel grid before orienting in focal plane?
376config.detectorList[5].transposeDetector = False
378# yaw (rotation about z) of the detector in degrees. This includes any
379# necessary rotation to go from detector coordinates to camera coordinates
380# after optional transposition.
381config.detectorList[5].yawDeg = 0.0
383# roll (rotation about x) of the detector in degrees
384config.detectorList[5].rollDeg = 0.0
386# Serial string associated with this specific detector
387config.detectorList[5].serial = 'g2'
389# pitch (rotation about y) of the detector in degrees
390config.detectorList[5].pitchDeg = 0.0
392# ID of detector slot
393config.detectorList[5].id = 5
395config.detectorList[6] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
396# y0 of pixel bounding box
397config.detectorList[6].bbox_y0 = 0
399# y1 of pixel bounding box
400config.detectorList[6].bbox_y1 = 1360
402# x1 of pixel bounding box
403config.detectorList[6].bbox_x1 = 2047
405# x0 of pixel bounding box
406config.detectorList[6].bbox_x0 = 0
408# Name of detector slot
409config.detectorList[6].name = 'z2'
411# Pixel size in the x dimension in mm
412config.detectorList[6].pixelSize_x = 0.024
414# Name of native coordinate system
415config.detectorList[6].transformDict.nativeSys = 'Pixels'
417config.detectorList[6].transformDict.transforms = None
418# x position of the reference point in the detector in pixels in transposed coordinates.
419config.detectorList[6].refpos_x = 1023.5
421# y position of the reference point in the detector in pixels in transposed coordinates.
422config.detectorList[6].refpos_y = 680.0
424# Pixel size in the y dimension in mm
425config.detectorList[6].pixelSize_y = 0.024
427# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
428config.detectorList[6].detectorType = 0
430# x offset from the origin of the camera in mm in the transposed system.
431config.detectorList[6].offset_x = 95.25
433# y offset from the origin of the camera in mm in the transposed system.
434config.detectorList[6].offset_y = 53.339999999999996
436# Transpose the pixel grid before orienting in focal plane?
437config.detectorList[6].transposeDetector = False
439# yaw (rotation about z) of the detector in degrees. This includes any
440# necessary rotation to go from detector coordinates to camera coordinates
441# after optional transposition.
442config.detectorList[6].yawDeg = 0.0
444# roll (rotation about x) of the detector in degrees
445config.detectorList[6].rollDeg = 0.0
447# Serial string associated with this specific detector
448config.detectorList[6].serial = 'z2'
450# pitch (rotation about y) of the detector in degrees
451config.detectorList[6].pitchDeg = 0.0
453# ID of detector slot
454config.detectorList[6].id = 6
456config.detectorList[7] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
457# y0 of pixel bounding box
458config.detectorList[7].bbox_y0 = 0
460# y1 of pixel bounding box
461config.detectorList[7].bbox_y1 = 1360
463# x1 of pixel bounding box
464config.detectorList[7].bbox_x1 = 2047
466# x0 of pixel bounding box
467config.detectorList[7].bbox_x0 = 0
469# Name of detector slot
470config.detectorList[7].name = 'u2'
472# Pixel size in the x dimension in mm
473config.detectorList[7].pixelSize_x = 0.024
475# Name of native coordinate system
476config.detectorList[7].transformDict.nativeSys = 'Pixels'
478config.detectorList[7].transformDict.transforms = None
479# x position of the reference point in the detector in pixels in transposed coordinates.
480config.detectorList[7].refpos_x = 1023.5
482# y position of the reference point in the detector in pixels in transposed coordinates.
483config.detectorList[7].refpos_y = 680.0
485# Pixel size in the y dimension in mm
486config.detectorList[7].pixelSize_y = 0.024
488# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
489config.detectorList[7].detectorType = 0
491# x offset from the origin of the camera in mm in the transposed system.
492config.detectorList[7].offset_x = 95.25
494# y offset from the origin of the camera in mm in the transposed system.
495config.detectorList[7].offset_y = 0.0
497# Transpose the pixel grid before orienting in focal plane?
498config.detectorList[7].transposeDetector = False
500# yaw (rotation about z) of the detector in degrees. This includes any
501# necessary rotation to go from detector coordinates to camera coordinates
502# after optional transposition.
503config.detectorList[7].yawDeg = 0.0
505# roll (rotation about x) of the detector in degrees
506config.detectorList[7].rollDeg = 0.0
508# Serial string associated with this specific detector
509config.detectorList[7].serial = 'u2'
511# pitch (rotation about y) of the detector in degrees
512config.detectorList[7].pitchDeg = 0.0
514# ID of detector slot
515config.detectorList[7].id = 7
517config.detectorList[8] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
518# y0 of pixel bounding box
519config.detectorList[8].bbox_y0 = 0
521# y1 of pixel bounding box
522config.detectorList[8].bbox_y1 = 1360
524# x1 of pixel bounding box
525config.detectorList[8].bbox_x1 = 2047
527# x0 of pixel bounding box
528config.detectorList[8].bbox_x0 = 0
530# Name of detector slot
531config.detectorList[8].name = 'i2'
533# Pixel size in the x dimension in mm
534config.detectorList[8].pixelSize_x = 0.024
536# Name of native coordinate system
537config.detectorList[8].transformDict.nativeSys = 'Pixels'
539config.detectorList[8].transformDict.transforms = None
540# x position of the reference point in the detector in pixels in transposed coordinates.
541config.detectorList[8].refpos_x = 1023.5
543# y position of the reference point in the detector in pixels in transposed coordinates.
544config.detectorList[8].refpos_y = 680.0
546# Pixel size in the y dimension in mm
547config.detectorList[8].pixelSize_y = 0.024
549# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
550config.detectorList[8].detectorType = 0
552# x offset from the origin of the camera in mm in the transposed system.
553config.detectorList[8].offset_x = 95.25
555# y offset from the origin of the camera in mm in the transposed system.
556config.detectorList[8].offset_y = -53.339999999999996
558# Transpose the pixel grid before orienting in focal plane?
559config.detectorList[8].transposeDetector = False
561# yaw (rotation about z) of the detector in degrees. This includes any
562# necessary rotation to go from detector coordinates to camera coordinates
563# after optional transposition.
564config.detectorList[8].yawDeg = 0.0
566# roll (rotation about x) of the detector in degrees
567config.detectorList[8].rollDeg = 0.0
569# Serial string associated with this specific detector
570config.detectorList[8].serial = 'i2'
572# pitch (rotation about y) of the detector in degrees
573config.detectorList[8].pitchDeg = 0.0
575# ID of detector slot
576config.detectorList[8].id = 8
578config.detectorList[9] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
579# y0 of pixel bounding box
580config.detectorList[9].bbox_y0 = 0
582# y1 of pixel bounding box
583config.detectorList[9].bbox_y1 = 1360
585# x1 of pixel bounding box
586config.detectorList[9].bbox_x1 = 2047
588# x0 of pixel bounding box
589config.detectorList[9].bbox_x0 = 0
591# Name of detector slot
592config.detectorList[9].name = 'r2'
594# Pixel size in the x dimension in mm
595config.detectorList[9].pixelSize_x = 0.024
597# Name of native coordinate system
598config.detectorList[9].transformDict.nativeSys = 'Pixels'
600config.detectorList[9].transformDict.transforms = None
601# x position of the reference point in the detector in pixels in transposed coordinates.
602config.detectorList[9].refpos_x = 1023.5
604# y position of the reference point in the detector in pixels in transposed coordinates.
605config.detectorList[9].refpos_y = 680.0
607# Pixel size in the y dimension in mm
608config.detectorList[9].pixelSize_y = 0.024
610# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
611config.detectorList[9].detectorType = 0
613# x offset from the origin of the camera in mm in the transposed system.
614config.detectorList[9].offset_x = 95.25
616# y offset from the origin of the camera in mm in the transposed system.
617config.detectorList[9].offset_y = -106.67999999999999
619# Transpose the pixel grid before orienting in focal plane?
620config.detectorList[9].transposeDetector = False
622# yaw (rotation about z) of the detector in degrees. This includes any
623# necessary rotation to go from detector coordinates to camera coordinates
624# after optional transposition.
625config.detectorList[9].yawDeg = 0.0
627# roll (rotation about x) of the detector in degrees
628config.detectorList[9].rollDeg = 0.0
630# Serial string associated with this specific detector
631config.detectorList[9].serial = 'r2'
633# pitch (rotation about y) of the detector in degrees
634config.detectorList[9].pitchDeg = 0.0
636# ID of detector slot
637config.detectorList[9].id = 9
639config.detectorList[10] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
640# y0 of pixel bounding box
641config.detectorList[10].bbox_y0 = 0
643# y1 of pixel bounding box
644config.detectorList[10].bbox_y1 = 1360
646# x1 of pixel bounding box
647config.detectorList[10].bbox_x1 = 2047
649# x0 of pixel bounding box
650config.detectorList[10].bbox_x0 = 0
652# Name of detector slot
653config.detectorList[10].name = 'g3'
655# Pixel size in the x dimension in mm
656config.detectorList[10].pixelSize_x = 0.024
658# Name of native coordinate system
659config.detectorList[10].transformDict.nativeSys = 'Pixels'
661config.detectorList[10].transformDict.transforms = None
662# x position of the reference point in the detector in pixels in transposed coordinates.
663config.detectorList[10].refpos_x = 1023.5
665# y position of the reference point in the detector in pixels in transposed coordinates.
666config.detectorList[10].refpos_y = 680.0
668# Pixel size in the y dimension in mm
669config.detectorList[10].pixelSize_y = 0.024
671# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
672config.detectorList[10].detectorType = 0
674# x offset from the origin of the camera in mm in the transposed system.
675config.detectorList[10].offset_x = 31.75
677# y offset from the origin of the camera in mm in the transposed system.
678config.detectorList[10].offset_y = 106.67999999999999
680# Transpose the pixel grid before orienting in focal plane?
681config.detectorList[10].transposeDetector = False
683# yaw (rotation about z) of the detector in degrees. This includes any
684# necessary rotation to go from detector coordinates to camera coordinates
685# after optional transposition.
686config.detectorList[10].yawDeg = 0.0
688# roll (rotation about x) of the detector in degrees
689config.detectorList[10].rollDeg = 0.0
691# Serial string associated with this specific detector
692config.detectorList[10].serial = 'g3'
694# pitch (rotation about y) of the detector in degrees
695config.detectorList[10].pitchDeg = 0.0
697# ID of detector slot
698config.detectorList[10].id = 10
700config.detectorList[11] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
701# y0 of pixel bounding box
702config.detectorList[11].bbox_y0 = 0
704# y1 of pixel bounding box
705config.detectorList[11].bbox_y1 = 1360
707# x1 of pixel bounding box
708config.detectorList[11].bbox_x1 = 2047
710# x0 of pixel bounding box
711config.detectorList[11].bbox_x0 = 0
713# Name of detector slot
714config.detectorList[11].name = 'z3'
716# Pixel size in the x dimension in mm
717config.detectorList[11].pixelSize_x = 0.024
719# Name of native coordinate system
720config.detectorList[11].transformDict.nativeSys = 'Pixels'
722config.detectorList[11].transformDict.transforms = None
723# x position of the reference point in the detector in pixels in transposed coordinates.
724config.detectorList[11].refpos_x = 1023.5
726# y position of the reference point in the detector in pixels in transposed coordinates.
727config.detectorList[11].refpos_y = 680.0
729# Pixel size in the y dimension in mm
730config.detectorList[11].pixelSize_y = 0.024
732# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
733config.detectorList[11].detectorType = 0
735# x offset from the origin of the camera in mm in the transposed system.
736config.detectorList[11].offset_x = 31.75
738# y offset from the origin of the camera in mm in the transposed system.
739config.detectorList[11].offset_y = 53.339999999999996
741# Transpose the pixel grid before orienting in focal plane?
742config.detectorList[11].transposeDetector = False
744# yaw (rotation about z) of the detector in degrees. This includes any
745# necessary rotation to go from detector coordinates to camera coordinates
746# after optional transposition.
747config.detectorList[11].yawDeg = 0.0
749# roll (rotation about x) of the detector in degrees
750config.detectorList[11].rollDeg = 0.0
752# Serial string associated with this specific detector
753config.detectorList[11].serial = 'z3'
755# pitch (rotation about y) of the detector in degrees
756config.detectorList[11].pitchDeg = 0.0
758# ID of detector slot
759config.detectorList[11].id = 11
761config.detectorList[12] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
762# y0 of pixel bounding box
763config.detectorList[12].bbox_y0 = 0
765# y1 of pixel bounding box
766config.detectorList[12].bbox_y1 = 1360
768# x1 of pixel bounding box
769config.detectorList[12].bbox_x1 = 2047
771# x0 of pixel bounding box
772config.detectorList[12].bbox_x0 = 0
774# Name of detector slot
775config.detectorList[12].name = 'u3'
777# Pixel size in the x dimension in mm
778config.detectorList[12].pixelSize_x = 0.024
780# Name of native coordinate system
781config.detectorList[12].transformDict.nativeSys = 'Pixels'
783config.detectorList[12].transformDict.transforms = None
784# x position of the reference point in the detector in pixels in transposed coordinates.
785config.detectorList[12].refpos_x = 1023.5
787# y position of the reference point in the detector in pixels in transposed coordinates.
788config.detectorList[12].refpos_y = 680.0
790# Pixel size in the y dimension in mm
791config.detectorList[12].pixelSize_y = 0.024
793# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
794config.detectorList[12].detectorType = 0
796# x offset from the origin of the camera in mm in the transposed system.
797config.detectorList[12].offset_x = 31.75
799# y offset from the origin of the camera in mm in the transposed system.
800config.detectorList[12].offset_y = 0.0
802# Transpose the pixel grid before orienting in focal plane?
803config.detectorList[12].transposeDetector = False
805# yaw (rotation about z) of the detector in degrees. This includes any
806# necessary rotation to go from detector coordinates to camera coordinates
807# after optional transposition.
808config.detectorList[12].yawDeg = 0.0
810# roll (rotation about x) of the detector in degrees
811config.detectorList[12].rollDeg = 0.0
813# Serial string associated with this specific detector
814config.detectorList[12].serial = 'u3'
816# pitch (rotation about y) of the detector in degrees
817config.detectorList[12].pitchDeg = 0.0
819# ID of detector slot
820config.detectorList[12].id = 12
822config.detectorList[13] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
823# y0 of pixel bounding box
824config.detectorList[13].bbox_y0 = 0
826# y1 of pixel bounding box
827config.detectorList[13].bbox_y1 = 1360
829# x1 of pixel bounding box
830config.detectorList[13].bbox_x1 = 2047
832# x0 of pixel bounding box
833config.detectorList[13].bbox_x0 = 0
835# Name of detector slot
836config.detectorList[13].name = 'i3'
838# Pixel size in the x dimension in mm
839config.detectorList[13].pixelSize_x = 0.024
841# Name of native coordinate system
842config.detectorList[13].transformDict.nativeSys = 'Pixels'
844config.detectorList[13].transformDict.transforms = None
845# x position of the reference point in the detector in pixels in transposed coordinates.
846config.detectorList[13].refpos_x = 1023.5
848# y position of the reference point in the detector in pixels in transposed coordinates.
849config.detectorList[13].refpos_y = 680.0
851# Pixel size in the y dimension in mm
852config.detectorList[13].pixelSize_y = 0.024
854# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
855config.detectorList[13].detectorType = 0
857# x offset from the origin of the camera in mm in the transposed system.
858config.detectorList[13].offset_x = 31.75
860# y offset from the origin of the camera in mm in the transposed system.
861config.detectorList[13].offset_y = -53.339999999999996
863# Transpose the pixel grid before orienting in focal plane?
864config.detectorList[13].transposeDetector = False
866# yaw (rotation about z) of the detector in degrees. This includes any
867# necessary rotation to go from detector coordinates to camera coordinates
868# after optional transposition.
869config.detectorList[13].yawDeg = 0.0
871# roll (rotation about x) of the detector in degrees
872config.detectorList[13].rollDeg = 0.0
874# Serial string associated with this specific detector
875config.detectorList[13].serial = 'i3'
877# pitch (rotation about y) of the detector in degrees
878config.detectorList[13].pitchDeg = 0.0
880# ID of detector slot
881config.detectorList[13].id = 13
883config.detectorList[14] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
884# y0 of pixel bounding box
885config.detectorList[14].bbox_y0 = 0
887# y1 of pixel bounding box
888config.detectorList[14].bbox_y1 = 1360
890# x1 of pixel bounding box
891config.detectorList[14].bbox_x1 = 2047
893# x0 of pixel bounding box
894config.detectorList[14].bbox_x0 = 0
896# Name of detector slot
897config.detectorList[14].name = 'r3'
899# Pixel size in the x dimension in mm
900config.detectorList[14].pixelSize_x = 0.024
902# Name of native coordinate system
903config.detectorList[14].transformDict.nativeSys = 'Pixels'
905config.detectorList[14].transformDict.transforms = None
906# x position of the reference point in the detector in pixels in transposed coordinates.
907config.detectorList[14].refpos_x = 1023.5
909# y position of the reference point in the detector in pixels in transposed coordinates.
910config.detectorList[14].refpos_y = 680.0
912# Pixel size in the y dimension in mm
913config.detectorList[14].pixelSize_y = 0.024
915# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
916config.detectorList[14].detectorType = 0
918# x offset from the origin of the camera in mm in the transposed system.
919config.detectorList[14].offset_x = 31.75
921# y offset from the origin of the camera in mm in the transposed system.
922config.detectorList[14].offset_y = -106.67999999999999
924# Transpose the pixel grid before orienting in focal plane?
925config.detectorList[14].transposeDetector = False
927# yaw (rotation about z) of the detector in degrees. This includes any
928# necessary rotation to go from detector coordinates to camera coordinates
929# after optional transposition.
930config.detectorList[14].yawDeg = 0.0
932# roll (rotation about x) of the detector in degrees
933config.detectorList[14].rollDeg = 0.0
935# Serial string associated with this specific detector
936config.detectorList[14].serial = 'r3'
938# pitch (rotation about y) of the detector in degrees
939config.detectorList[14].pitchDeg = 0.0
941# ID of detector slot
942config.detectorList[14].id = 14
944config.detectorList[15] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
945# y0 of pixel bounding box
946config.detectorList[15].bbox_y0 = 0
948# y1 of pixel bounding box
949config.detectorList[15].bbox_y1 = 1360
951# x1 of pixel bounding box
952config.detectorList[15].bbox_x1 = 2047
954# x0 of pixel bounding box
955config.detectorList[15].bbox_x0 = 0
957# Name of detector slot
958config.detectorList[15].name = 'g4'
960# Pixel size in the x dimension in mm
961config.detectorList[15].pixelSize_x = 0.024
963# Name of native coordinate system
964config.detectorList[15].transformDict.nativeSys = 'Pixels'
966config.detectorList[15].transformDict.transforms = None
967# x position of the reference point in the detector in pixels in transposed coordinates.
968config.detectorList[15].refpos_x = 1023.5
970# y position of the reference point in the detector in pixels in transposed coordinates.
971config.detectorList[15].refpos_y = 680.0
973# Pixel size in the y dimension in mm
974config.detectorList[15].pixelSize_y = 0.024
976# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
977config.detectorList[15].detectorType = 0
979# x offset from the origin of the camera in mm in the transposed system.
980config.detectorList[15].offset_x = -31.75
982# y offset from the origin of the camera in mm in the transposed system.
983config.detectorList[15].offset_y = 106.67999999999999
985# Transpose the pixel grid before orienting in focal plane?
986config.detectorList[15].transposeDetector = False
988# yaw (rotation about z) of the detector in degrees. This includes any
989# necessary rotation to go from detector coordinates to camera coordinates
990# after optional transposition.
991config.detectorList[15].yawDeg = 0.0
993# roll (rotation about x) of the detector in degrees
994config.detectorList[15].rollDeg = 0.0
996# Serial string associated with this specific detector
997config.detectorList[15].serial = 'g4'
999# pitch (rotation about y) of the detector in degrees
1000config.detectorList[15].pitchDeg = 0.0
1002# ID of detector slot
1003config.detectorList[15].id = 15
1005config.detectorList[16] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1006# y0 of pixel bounding box
1007config.detectorList[16].bbox_y0 = 0
1009# y1 of pixel bounding box
1010config.detectorList[16].bbox_y1 = 1360
1012# x1 of pixel bounding box
1013config.detectorList[16].bbox_x1 = 2047
1015# x0 of pixel bounding box
1016config.detectorList[16].bbox_x0 = 0
1018# Name of detector slot
1019config.detectorList[16].name = 'z4'
1021# Pixel size in the x dimension in mm
1022config.detectorList[16].pixelSize_x = 0.024
1024# Name of native coordinate system
1025config.detectorList[16].transformDict.nativeSys = 'Pixels'
1027config.detectorList[16].transformDict.transforms = None
1028# x position of the reference point in the detector in pixels in transposed coordinates.
1029config.detectorList[16].refpos_x = 1023.5
1031# y position of the reference point in the detector in pixels in transposed coordinates.
1032config.detectorList[16].refpos_y = 680.0
1034# Pixel size in the y dimension in mm
1035config.detectorList[16].pixelSize_y = 0.024
1037# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1038config.detectorList[16].detectorType = 0
1040# x offset from the origin of the camera in mm in the transposed system.
1041config.detectorList[16].offset_x = -31.75
1043# y offset from the origin of the camera in mm in the transposed system.
1044config.detectorList[16].offset_y = 53.339999999999996
1046# Transpose the pixel grid before orienting in focal plane?
1047config.detectorList[16].transposeDetector = False
1049# yaw (rotation about z) of the detector in degrees. This includes any
1050# necessary rotation to go from detector coordinates to camera coordinates
1051# after optional transposition.
1052config.detectorList[16].yawDeg = 0.0
1054# roll (rotation about x) of the detector in degrees
1055config.detectorList[16].rollDeg = 0.0
1057# Serial string associated with this specific detector
1058config.detectorList[16].serial = 'z4'
1060# pitch (rotation about y) of the detector in degrees
1061config.detectorList[16].pitchDeg = 0.0
1063# ID of detector slot
1064config.detectorList[16].id = 16
1066config.detectorList[17] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1067# y0 of pixel bounding box
1068config.detectorList[17].bbox_y0 = 0
1070# y1 of pixel bounding box
1071config.detectorList[17].bbox_y1 = 1360
1073# x1 of pixel bounding box
1074config.detectorList[17].bbox_x1 = 2047
1076# x0 of pixel bounding box
1077config.detectorList[17].bbox_x0 = 0
1079# Name of detector slot
1080config.detectorList[17].name = 'u4'
1082# Pixel size in the x dimension in mm
1083config.detectorList[17].pixelSize_x = 0.024
1085# Name of native coordinate system
1086config.detectorList[17].transformDict.nativeSys = 'Pixels'
1088config.detectorList[17].transformDict.transforms = None
1089# x position of the reference point in the detector in pixels in transposed coordinates.
1090config.detectorList[17].refpos_x = 1023.5
1092# y position of the reference point in the detector in pixels in transposed coordinates.
1093config.detectorList[17].refpos_y = 680.0
1095# Pixel size in the y dimension in mm
1096config.detectorList[17].pixelSize_y = 0.024
1098# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1099config.detectorList[17].detectorType = 0
1101# x offset from the origin of the camera in mm in the transposed system.
1102config.detectorList[17].offset_x = -31.75
1104# y offset from the origin of the camera in mm in the transposed system.
1105config.detectorList[17].offset_y = 0.0
1107# Transpose the pixel grid before orienting in focal plane?
1108config.detectorList[17].transposeDetector = False
1110# yaw (rotation about z) of the detector in degrees. This includes any
1111# necessary rotation to go from detector coordinates to camera coordinates
1112# after optional transposition.
1113config.detectorList[17].yawDeg = 0.0
1115# roll (rotation about x) of the detector in degrees
1116config.detectorList[17].rollDeg = 0.0
1118# Serial string associated with this specific detector
1119config.detectorList[17].serial = 'u4'
1121# pitch (rotation about y) of the detector in degrees
1122config.detectorList[17].pitchDeg = 0.0
1124# ID of detector slot
1125config.detectorList[17].id = 17
1127config.detectorList[18] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1128# y0 of pixel bounding box
1129config.detectorList[18].bbox_y0 = 0
1131# y1 of pixel bounding box
1132config.detectorList[18].bbox_y1 = 1360
1134# x1 of pixel bounding box
1135config.detectorList[18].bbox_x1 = 2047
1137# x0 of pixel bounding box
1138config.detectorList[18].bbox_x0 = 0
1140# Name of detector slot
1141config.detectorList[18].name = 'i4'
1143# Pixel size in the x dimension in mm
1144config.detectorList[18].pixelSize_x = 0.024
1146# Name of native coordinate system
1147config.detectorList[18].transformDict.nativeSys = 'Pixels'
1149config.detectorList[18].transformDict.transforms = None
1150# x position of the reference point in the detector in pixels in transposed coordinates.
1151config.detectorList[18].refpos_x = 1023.5
1153# y position of the reference point in the detector in pixels in transposed coordinates.
1154config.detectorList[18].refpos_y = 680.0
1156# Pixel size in the y dimension in mm
1157config.detectorList[18].pixelSize_y = 0.024
1159# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1160config.detectorList[18].detectorType = 0
1162# x offset from the origin of the camera in mm in the transposed system.
1163config.detectorList[18].offset_x = -31.75
1165# y offset from the origin of the camera in mm in the transposed system.
1166config.detectorList[18].offset_y = -53.339999999999996
1168# Transpose the pixel grid before orienting in focal plane?
1169config.detectorList[18].transposeDetector = False
1171# yaw (rotation about z) of the detector in degrees. This includes any
1172# necessary rotation to go from detector coordinates to camera coordinates
1173# after optional transposition.
1174config.detectorList[18].yawDeg = 0.0
1176# roll (rotation about x) of the detector in degrees
1177config.detectorList[18].rollDeg = 0.0
1179# Serial string associated with this specific detector
1180config.detectorList[18].serial = 'i4'
1182# pitch (rotation about y) of the detector in degrees
1183config.detectorList[18].pitchDeg = 0.0
1185# ID of detector slot
1186config.detectorList[18].id = 18
1188config.detectorList[19] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1189# y0 of pixel bounding box
1190config.detectorList[19].bbox_y0 = 0
1192# y1 of pixel bounding box
1193config.detectorList[19].bbox_y1 = 1360
1195# x1 of pixel bounding box
1196config.detectorList[19].bbox_x1 = 2047
1198# x0 of pixel bounding box
1199config.detectorList[19].bbox_x0 = 0
1201# Name of detector slot
1202config.detectorList[19].name = 'r4'
1204# Pixel size in the x dimension in mm
1205config.detectorList[19].pixelSize_x = 0.024
1207# Name of native coordinate system
1208config.detectorList[19].transformDict.nativeSys = 'Pixels'
1210config.detectorList[19].transformDict.transforms = None
1211# x position of the reference point in the detector in pixels in transposed coordinates.
1212config.detectorList[19].refpos_x = 1023.5
1214# y position of the reference point in the detector in pixels in transposed coordinates.
1215config.detectorList[19].refpos_y = 680.0
1217# Pixel size in the y dimension in mm
1218config.detectorList[19].pixelSize_y = 0.024
1220# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1221config.detectorList[19].detectorType = 0
1223# x offset from the origin of the camera in mm in the transposed system.
1224config.detectorList[19].offset_x = -31.75
1226# y offset from the origin of the camera in mm in the transposed system.
1227config.detectorList[19].offset_y = -106.67999999999999
1229# Transpose the pixel grid before orienting in focal plane?
1230config.detectorList[19].transposeDetector = False
1232# yaw (rotation about z) of the detector in degrees. This includes any
1233# necessary rotation to go from detector coordinates to camera coordinates
1234# after optional transposition.
1235config.detectorList[19].yawDeg = 0.0
1237# roll (rotation about x) of the detector in degrees
1238config.detectorList[19].rollDeg = 0.0
1240# Serial string associated with this specific detector
1241config.detectorList[19].serial = 'r4'
1243# pitch (rotation about y) of the detector in degrees
1244config.detectorList[19].pitchDeg = 0.0
1246# ID of detector slot
1247config.detectorList[19].id = 19
1249config.detectorList[20] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1250# y0 of pixel bounding box
1251config.detectorList[20].bbox_y0 = 0
1253# y1 of pixel bounding box
1254config.detectorList[20].bbox_y1 = 1360
1256# x1 of pixel bounding box
1257config.detectorList[20].bbox_x1 = 2047
1259# x0 of pixel bounding box
1260config.detectorList[20].bbox_x0 = 0
1262# Name of detector slot
1263config.detectorList[20].name = 'g5'
1265# Pixel size in the x dimension in mm
1266config.detectorList[20].pixelSize_x = 0.024
1268# Name of native coordinate system
1269config.detectorList[20].transformDict.nativeSys = 'Pixels'
1271config.detectorList[20].transformDict.transforms = None
1272# x position of the reference point in the detector in pixels in transposed coordinates.
1273config.detectorList[20].refpos_x = 1023.5
1275# y position of the reference point in the detector in pixels in transposed coordinates.
1276config.detectorList[20].refpos_y = 680.0
1278# Pixel size in the y dimension in mm
1279config.detectorList[20].pixelSize_y = 0.024
1281# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1282config.detectorList[20].detectorType = 0
1284# x offset from the origin of the camera in mm in the transposed system.
1285config.detectorList[20].offset_x = -95.25
1287# y offset from the origin of the camera in mm in the transposed system.
1288config.detectorList[20].offset_y = 106.67999999999999
1290# Transpose the pixel grid before orienting in focal plane?
1291config.detectorList[20].transposeDetector = False
1293# yaw (rotation about z) of the detector in degrees. This includes any
1294# necessary rotation to go from detector coordinates to camera coordinates
1295# after optional transposition.
1296config.detectorList[20].yawDeg = 0.0
1298# roll (rotation about x) of the detector in degrees
1299config.detectorList[20].rollDeg = 0.0
1301# Serial string associated with this specific detector
1302config.detectorList[20].serial = 'g5'
1304# pitch (rotation about y) of the detector in degrees
1305config.detectorList[20].pitchDeg = 0.0
1307# ID of detector slot
1308config.detectorList[20].id = 20
1310config.detectorList[21] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1311# y0 of pixel bounding box
1312config.detectorList[21].bbox_y0 = 0
1314# y1 of pixel bounding box
1315config.detectorList[21].bbox_y1 = 1360
1317# x1 of pixel bounding box
1318config.detectorList[21].bbox_x1 = 2047
1320# x0 of pixel bounding box
1321config.detectorList[21].bbox_x0 = 0
1323# Name of detector slot
1324config.detectorList[21].name = 'z5'
1326# Pixel size in the x dimension in mm
1327config.detectorList[21].pixelSize_x = 0.024
1329# Name of native coordinate system
1330config.detectorList[21].transformDict.nativeSys = 'Pixels'
1332config.detectorList[21].transformDict.transforms = None
1333# x position of the reference point in the detector in pixels in transposed coordinates.
1334config.detectorList[21].refpos_x = 1023.5
1336# y position of the reference point in the detector in pixels in transposed coordinates.
1337config.detectorList[21].refpos_y = 680.0
1339# Pixel size in the y dimension in mm
1340config.detectorList[21].pixelSize_y = 0.024
1342# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1343config.detectorList[21].detectorType = 0
1345# x offset from the origin of the camera in mm in the transposed system.
1346config.detectorList[21].offset_x = -95.25
1348# y offset from the origin of the camera in mm in the transposed system.
1349config.detectorList[21].offset_y = 53.339999999999996
1351# Transpose the pixel grid before orienting in focal plane?
1352config.detectorList[21].transposeDetector = False
1354# yaw (rotation about z) of the detector in degrees. This includes any
1355# necessary rotation to go from detector coordinates to camera coordinates
1356# after optional transposition.
1357config.detectorList[21].yawDeg = 0.0
1359# roll (rotation about x) of the detector in degrees
1360config.detectorList[21].rollDeg = 0.0
1362# Serial string associated with this specific detector
1363config.detectorList[21].serial = 'z5'
1365# pitch (rotation about y) of the detector in degrees
1366config.detectorList[21].pitchDeg = 0.0
1368# ID of detector slot
1369config.detectorList[21].id = 21
1371config.detectorList[22] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1372# y0 of pixel bounding box
1373config.detectorList[22].bbox_y0 = 0
1375# y1 of pixel bounding box
1376config.detectorList[22].bbox_y1 = 1360
1378# x1 of pixel bounding box
1379config.detectorList[22].bbox_x1 = 2047
1381# x0 of pixel bounding box
1382config.detectorList[22].bbox_x0 = 0
1384# Name of detector slot
1385config.detectorList[22].name = 'u5'
1387# Pixel size in the x dimension in mm
1388config.detectorList[22].pixelSize_x = 0.024
1390# Name of native coordinate system
1391config.detectorList[22].transformDict.nativeSys = 'Pixels'
1393config.detectorList[22].transformDict.transforms = None
1394# x position of the reference point in the detector in pixels in transposed coordinates.
1395config.detectorList[22].refpos_x = 1023.5
1397# y position of the reference point in the detector in pixels in transposed coordinates.
1398config.detectorList[22].refpos_y = 680.0
1400# Pixel size in the y dimension in mm
1401config.detectorList[22].pixelSize_y = 0.024
1403# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1404config.detectorList[22].detectorType = 0
1406# x offset from the origin of the camera in mm in the transposed system.
1407config.detectorList[22].offset_x = -95.25
1409# y offset from the origin of the camera in mm in the transposed system.
1410config.detectorList[22].offset_y = 0.0
1412# Transpose the pixel grid before orienting in focal plane?
1413config.detectorList[22].transposeDetector = False
1415# yaw (rotation about z) of the detector in degrees. This includes any
1416# necessary rotation to go from detector coordinates to camera coordinates
1417# after optional transposition.
1418config.detectorList[22].yawDeg = 0.0
1420# roll (rotation about x) of the detector in degrees
1421config.detectorList[22].rollDeg = 0.0
1423# Serial string associated with this specific detector
1424config.detectorList[22].serial = 'u5'
1426# pitch (rotation about y) of the detector in degrees
1427config.detectorList[22].pitchDeg = 0.0
1429# ID of detector slot
1430config.detectorList[22].id = 22
1432config.detectorList[23] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1433# y0 of pixel bounding box
1434config.detectorList[23].bbox_y0 = 0
1436# y1 of pixel bounding box
1437config.detectorList[23].bbox_y1 = 1360
1439# x1 of pixel bounding box
1440config.detectorList[23].bbox_x1 = 2047
1442# x0 of pixel bounding box
1443config.detectorList[23].bbox_x0 = 0
1445# Name of detector slot
1446config.detectorList[23].name = 'i5'
1448# Pixel size in the x dimension in mm
1449config.detectorList[23].pixelSize_x = 0.024
1451# Name of native coordinate system
1452config.detectorList[23].transformDict.nativeSys = 'Pixels'
1454config.detectorList[23].transformDict.transforms = None
1455# x position of the reference point in the detector in pixels in transposed coordinates.
1456config.detectorList[23].refpos_x = 1023.5
1458# y position of the reference point in the detector in pixels in transposed coordinates.
1459config.detectorList[23].refpos_y = 680.0
1461# Pixel size in the y dimension in mm
1462config.detectorList[23].pixelSize_y = 0.024
1464# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1465config.detectorList[23].detectorType = 0
1467# x offset from the origin of the camera in mm in the transposed system.
1468config.detectorList[23].offset_x = -95.25
1470# y offset from the origin of the camera in mm in the transposed system.
1471config.detectorList[23].offset_y = -53.339999999999996
1473# Transpose the pixel grid before orienting in focal plane?
1474config.detectorList[23].transposeDetector = False
1476# yaw (rotation about z) of the detector in degrees. This includes any
1477# necessary rotation to go from detector coordinates to camera coordinates
1478# after optional transposition.
1479config.detectorList[23].yawDeg = 0.0
1481# roll (rotation about x) of the detector in degrees
1482config.detectorList[23].rollDeg = 0.0
1484# Serial string associated with this specific detector
1485config.detectorList[23].serial = 'i5'
1487# pitch (rotation about y) of the detector in degrees
1488config.detectorList[23].pitchDeg = 0.0
1490# ID of detector slot
1491config.detectorList[23].id = 23
1493config.detectorList[24] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1494# y0 of pixel bounding box
1495config.detectorList[24].bbox_y0 = 0
1497# y1 of pixel bounding box
1498config.detectorList[24].bbox_y1 = 1360
1500# x1 of pixel bounding box
1501config.detectorList[24].bbox_x1 = 2047
1503# x0 of pixel bounding box
1504config.detectorList[24].bbox_x0 = 0
1506# Name of detector slot
1507config.detectorList[24].name = 'r5'
1509# Pixel size in the x dimension in mm
1510config.detectorList[24].pixelSize_x = 0.024
1512# Name of native coordinate system
1513config.detectorList[24].transformDict.nativeSys = 'Pixels'
1515config.detectorList[24].transformDict.transforms = None
1516# x position of the reference point in the detector in pixels in transposed coordinates.
1517config.detectorList[24].refpos_x = 1023.5
1519# y position of the reference point in the detector in pixels in transposed coordinates.
1520config.detectorList[24].refpos_y = 680.0
1522# Pixel size in the y dimension in mm
1523config.detectorList[24].pixelSize_y = 0.024
1525# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1526config.detectorList[24].detectorType = 0
1528# x offset from the origin of the camera in mm in the transposed system.
1529config.detectorList[24].offset_x = -95.25
1531# y offset from the origin of the camera in mm in the transposed system.
1532config.detectorList[24].offset_y = -106.67999999999999
1534# Transpose the pixel grid before orienting in focal plane?
1535config.detectorList[24].transposeDetector = False
1537# yaw (rotation about z) of the detector in degrees. This includes any
1538# necessary rotation to go from detector coordinates to camera coordinates
1539# after optional transposition.
1540config.detectorList[24].yawDeg = 0.0
1542# roll (rotation about x) of the detector in degrees
1543config.detectorList[24].rollDeg = 0.0
1545# Serial string associated with this specific detector
1546config.detectorList[24].serial = 'r5'
1548# pitch (rotation about y) of the detector in degrees
1549config.detectorList[24].pitchDeg = 0.0
1551# ID of detector slot
1552config.detectorList[24].id = 24
1554config.detectorList[25] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1555# y0 of pixel bounding box
1556config.detectorList[25].bbox_y0 = 0
1558# y1 of pixel bounding box
1559config.detectorList[25].bbox_y1 = 1360
1561# x1 of pixel bounding box
1562config.detectorList[25].bbox_x1 = 2047
1564# x0 of pixel bounding box
1565config.detectorList[25].bbox_x0 = 0
1567# Name of detector slot
1568config.detectorList[25].name = 'g6'
1570# Pixel size in the x dimension in mm
1571config.detectorList[25].pixelSize_x = 0.024
1573# Name of native coordinate system
1574config.detectorList[25].transformDict.nativeSys = 'Pixels'
1576config.detectorList[25].transformDict.transforms = None
1577# x position of the reference point in the detector in pixels in transposed coordinates.
1578config.detectorList[25].refpos_x = 1023.5
1580# y position of the reference point in the detector in pixels in transposed coordinates.
1581config.detectorList[25].refpos_y = 680.0
1583# Pixel size in the y dimension in mm
1584config.detectorList[25].pixelSize_y = 0.024
1586# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1587config.detectorList[25].detectorType = 0
1589# x offset from the origin of the camera in mm in the transposed system.
1590config.detectorList[25].offset_x = -158.75
1592# y offset from the origin of the camera in mm in the transposed system.
1593config.detectorList[25].offset_y = 106.67999999999999
1595# Transpose the pixel grid before orienting in focal plane?
1596config.detectorList[25].transposeDetector = False
1598# yaw (rotation about z) of the detector in degrees. This includes any
1599# necessary rotation to go from detector coordinates to camera coordinates
1600# after optional transposition.
1601config.detectorList[25].yawDeg = 0.0
1603# roll (rotation about x) of the detector in degrees
1604config.detectorList[25].rollDeg = 0.0
1606# Serial string associated with this specific detector
1607config.detectorList[25].serial = 'g6'
1609# pitch (rotation about y) of the detector in degrees
1610config.detectorList[25].pitchDeg = 0.0
1612# ID of detector slot
1613config.detectorList[25].id = 25
1615config.detectorList[26] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1616# y0 of pixel bounding box
1617config.detectorList[26].bbox_y0 = 0
1619# y1 of pixel bounding box
1620config.detectorList[26].bbox_y1 = 1360
1622# x1 of pixel bounding box
1623config.detectorList[26].bbox_x1 = 2047
1625# x0 of pixel bounding box
1626config.detectorList[26].bbox_x0 = 0
1628# Name of detector slot
1629config.detectorList[26].name = 'z6'
1631# Pixel size in the x dimension in mm
1632config.detectorList[26].pixelSize_x = 0.024
1634# Name of native coordinate system
1635config.detectorList[26].transformDict.nativeSys = 'Pixels'
1637config.detectorList[26].transformDict.transforms = None
1638# x position of the reference point in the detector in pixels in transposed coordinates.
1639config.detectorList[26].refpos_x = 1023.5
1641# y position of the reference point in the detector in pixels in transposed coordinates.
1642config.detectorList[26].refpos_y = 680.0
1644# Pixel size in the y dimension in mm
1645config.detectorList[26].pixelSize_y = 0.024
1647# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1648config.detectorList[26].detectorType = 0
1650# x offset from the origin of the camera in mm in the transposed system.
1651config.detectorList[26].offset_x = -158.75
1653# y offset from the origin of the camera in mm in the transposed system.
1654config.detectorList[26].offset_y = 53.339999999999996
1656# Transpose the pixel grid before orienting in focal plane?
1657config.detectorList[26].transposeDetector = False
1659# yaw (rotation about z) of the detector in degrees. This includes any
1660# necessary rotation to go from detector coordinates to camera coordinates
1661# after optional transposition.
1662config.detectorList[26].yawDeg = 0.0
1664# roll (rotation about x) of the detector in degrees
1665config.detectorList[26].rollDeg = 0.0
1667# Serial string associated with this specific detector
1668config.detectorList[26].serial = 'z6'
1670# pitch (rotation about y) of the detector in degrees
1671config.detectorList[26].pitchDeg = 0.0
1673# ID of detector slot
1674config.detectorList[26].id = 26
1676config.detectorList[27] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1677# y0 of pixel bounding box
1678config.detectorList[27].bbox_y0 = 0
1680# y1 of pixel bounding box
1681config.detectorList[27].bbox_y1 = 1360
1683# x1 of pixel bounding box
1684config.detectorList[27].bbox_x1 = 2047
1686# x0 of pixel bounding box
1687config.detectorList[27].bbox_x0 = 0
1689# Name of detector slot
1690config.detectorList[27].name = 'u6'
1692# Pixel size in the x dimension in mm
1693config.detectorList[27].pixelSize_x = 0.024
1695# Name of native coordinate system
1696config.detectorList[27].transformDict.nativeSys = 'Pixels'
1698config.detectorList[27].transformDict.transforms = None
1699# x position of the reference point in the detector in pixels in transposed coordinates.
1700config.detectorList[27].refpos_x = 1023.5
1702# y position of the reference point in the detector in pixels in transposed coordinates.
1703config.detectorList[27].refpos_y = 680.0
1705# Pixel size in the y dimension in mm
1706config.detectorList[27].pixelSize_y = 0.024
1708# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1709config.detectorList[27].detectorType = 0
1711# x offset from the origin of the camera in mm in the transposed system.
1712config.detectorList[27].offset_x = -158.75
1714# y offset from the origin of the camera in mm in the transposed system.
1715config.detectorList[27].offset_y = 0.0
1717# Transpose the pixel grid before orienting in focal plane?
1718config.detectorList[27].transposeDetector = False
1720# yaw (rotation about z) of the detector in degrees. This includes any
1721# necessary rotation to go from detector coordinates to camera coordinates
1722# after optional transposition.
1723config.detectorList[27].yawDeg = 0.0
1725# roll (rotation about x) of the detector in degrees
1726config.detectorList[27].rollDeg = 0.0
1728# Serial string associated with this specific detector
1729config.detectorList[27].serial = 'u6'
1731# pitch (rotation about y) of the detector in degrees
1732config.detectorList[27].pitchDeg = 0.0
1734# ID of detector slot
1735config.detectorList[27].id = 27
1737config.detectorList[28] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1738# y0 of pixel bounding box
1739config.detectorList[28].bbox_y0 = 0
1741# y1 of pixel bounding box
1742config.detectorList[28].bbox_y1 = 1360
1744# x1 of pixel bounding box
1745config.detectorList[28].bbox_x1 = 2047
1747# x0 of pixel bounding box
1748config.detectorList[28].bbox_x0 = 0
1750# Name of detector slot
1751config.detectorList[28].name = 'i6'
1753# Pixel size in the x dimension in mm
1754config.detectorList[28].pixelSize_x = 0.024
1756# Name of native coordinate system
1757config.detectorList[28].transformDict.nativeSys = 'Pixels'
1759config.detectorList[28].transformDict.transforms = None
1760# x position of the reference point in the detector in pixels in transposed coordinates.
1761config.detectorList[28].refpos_x = 1023.5
1763# y position of the reference point in the detector in pixels in transposed coordinates.
1764config.detectorList[28].refpos_y = 680.0
1766# Pixel size in the y dimension in mm
1767config.detectorList[28].pixelSize_y = 0.024
1769# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1770config.detectorList[28].detectorType = 0
1772# x offset from the origin of the camera in mm in the transposed system.
1773config.detectorList[28].offset_x = -158.75
1775# y offset from the origin of the camera in mm in the transposed system.
1776config.detectorList[28].offset_y = -53.339999999999996
1778# Transpose the pixel grid before orienting in focal plane?
1779config.detectorList[28].transposeDetector = False
1781# yaw (rotation about z) of the detector in degrees. This includes any
1782# necessary rotation to go from detector coordinates to camera coordinates
1783# after optional transposition.
1784config.detectorList[28].yawDeg = 0.0
1786# roll (rotation about x) of the detector in degrees
1787config.detectorList[28].rollDeg = 0.0
1789# Serial string associated with this specific detector
1790config.detectorList[28].serial = 'i6'
1792# pitch (rotation about y) of the detector in degrees
1793config.detectorList[28].pitchDeg = 0.0
1795# ID of detector slot
1796config.detectorList[28].id = 28
1798config.detectorList[29] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig()
1799# y0 of pixel bounding box
1800config.detectorList[29].bbox_y0 = 0
1802# y1 of pixel bounding box
1803config.detectorList[29].bbox_y1 = 1360
1805# x1 of pixel bounding box
1806config.detectorList[29].bbox_x1 = 2047
1808# x0 of pixel bounding box
1809config.detectorList[29].bbox_x0 = 0
1811# Name of detector slot
1812config.detectorList[29].name = 'r6'
1814# Pixel size in the x dimension in mm
1815config.detectorList[29].pixelSize_x = 0.024
1817# Name of native coordinate system
1818config.detectorList[29].transformDict.nativeSys = 'Pixels'
1820config.detectorList[29].transformDict.transforms = None
1821# x position of the reference point in the detector in pixels in transposed coordinates.
1822config.detectorList[29].refpos_x = 1023.5
1824# y position of the reference point in the detector in pixels in transposed coordinates.
1825config.detectorList[29].refpos_y = 680.0
1827# Pixel size in the y dimension in mm
1828config.detectorList[29].pixelSize_y = 0.024
1830# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3
1831config.detectorList[29].detectorType = 0
1833# x offset from the origin of the camera in mm in the transposed system.
1834config.detectorList[29].offset_x = -158.75
1836# y offset from the origin of the camera in mm in the transposed system.
1837config.detectorList[29].offset_y = -106.67999999999999
1839# Transpose the pixel grid before orienting in focal plane?
1840config.detectorList[29].transposeDetector = False
1842# yaw (rotation about z) of the detector in degrees. This includes any
1843# necessary rotation to go from detector coordinates to camera coordinates
1844# after optional transposition.
1845config.detectorList[29].yawDeg = 0.0
1847# roll (rotation about x) of the detector in degrees
1848config.detectorList[29].rollDeg = 0.0
1850# Serial string associated with this specific detector
1851config.detectorList[29].serial = 'r6'
1853# pitch (rotation about y) of the detector in degrees
1854config.detectorList[29].pitchDeg = 0.0
1856# ID of detector slot
1857config.detectorList[29].id = 29
1859# Coefficients for radial distortion
1860config.radialCoeffs = None
1862# Name of this camera
1863config.name = 'SDSS'