Hide keyboard shortcuts

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 

6 

7# Name of native coordinate system 

8config.transformDict.nativeSys = 'FocalPlane' 

9 

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] 

15 

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] 

19 

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] 

23 

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 

29 

30# y1 of pixel bounding box 

31config.detectorList[0].bbox_y1 = 4095 

32 

33# x1 of pixel bounding box 

34config.detectorList[0].bbox_x1 = 2047 

35 

36# x0 of pixel bounding box 

37config.detectorList[0].bbox_x0 = 0 

38 

39# Name of detector slot 

40config.detectorList[0].name = 'S29' 

41 

42# Pixel size in the x dimension in mm 

43config.detectorList[0].pixelSize_x = 0.015 

44 

45# Name of native coordinate system 

46config.detectorList[0].transformDict.nativeSys = 'Pixels' 

47 

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 

51 

52# y position of the reference point in the detector in pixels in transposed coordinates. 

53config.detectorList[0].refpos_y = 2047.5 

54 

55# Pixel size in the y dimension in mm 

56config.detectorList[0].pixelSize_y = 0.015 

57 

58# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

59config.detectorList[0].detectorType = 0 

60 

61# x offset from the origin of the camera in mm in the transposed system. 

62config.detectorList[0].offset_x = -185.59199999999998 

63 

64# y offset from the origin of the camera in mm in the transposed system. 

65config.detectorList[0].offset_y = -63.748000000000005 

66 

67# Transpose the pixel grid before orienting in focal plane? 

68config.detectorList[0].transposeDetector = False 

69 

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 

74 

75# roll (rotation about x) of the detector in degrees 

76config.detectorList[0].rollDeg = 0.0 

77 

78# Serial string associated with this specific detector 

79config.detectorList[0].serial = '1' 

80 

81# pitch (rotation about y) of the detector in degrees 

82config.detectorList[0].pitchDeg = 0.0 

83 

84# ID of detector slot 

85config.detectorList[0].id = 1 

86 

87config.detectorList[1] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

88# y0 of pixel bounding box 

89config.detectorList[1].bbox_y0 = 0 

90 

91# y1 of pixel bounding box 

92config.detectorList[1].bbox_y1 = 4095 

93 

94# x1 of pixel bounding box 

95config.detectorList[1].bbox_x1 = 2047 

96 

97# x0 of pixel bounding box 

98config.detectorList[1].bbox_x0 = 0 

99 

100# Name of detector slot 

101config.detectorList[1].name = 'S30' 

102 

103# Pixel size in the x dimension in mm 

104config.detectorList[1].pixelSize_x = 0.015 

105 

106# Name of native coordinate system 

107config.detectorList[1].transformDict.nativeSys = 'Pixels' 

108 

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 

112 

113# y position of the reference point in the detector in pixels in transposed coordinates. 

114config.detectorList[1].refpos_y = 2047.5 

115 

116# Pixel size in the y dimension in mm 

117config.detectorList[1].pixelSize_y = 0.015 

118 

119# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

120config.detectorList[1].detectorType = 0 

121 

122# x offset from the origin of the camera in mm in the transposed system. 

123config.detectorList[1].offset_x = -185.54199999999997 

124 

125# y offset from the origin of the camera in mm in the transposed system. 

126config.detectorList[1].offset_y = -0.023999999999999133 

127 

128# Transpose the pixel grid before orienting in focal plane? 

129config.detectorList[1].transposeDetector = False 

130 

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 

135 

136# roll (rotation about x) of the detector in degrees 

137config.detectorList[1].rollDeg = 0.0 

138 

139# Serial string associated with this specific detector 

140config.detectorList[1].serial = '2' 

141 

142# pitch (rotation about y) of the detector in degrees 

143config.detectorList[1].pitchDeg = 0.0 

144 

145# ID of detector slot 

146config.detectorList[1].id = 2 

147 

148config.detectorList[2] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

149# y0 of pixel bounding box 

150config.detectorList[2].bbox_y0 = 0 

151 

152# y1 of pixel bounding box 

153config.detectorList[2].bbox_y1 = 4095 

154 

155# x1 of pixel bounding box 

156config.detectorList[2].bbox_x1 = 2047 

157 

158# x0 of pixel bounding box 

159config.detectorList[2].bbox_x0 = 0 

160 

161# Name of detector slot 

162config.detectorList[2].name = 'S31' 

163 

164# Pixel size in the x dimension in mm 

165config.detectorList[2].pixelSize_x = 0.015 

166 

167# Name of native coordinate system 

168config.detectorList[2].transformDict.nativeSys = 'Pixels' 

169 

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 

173 

174# y position of the reference point in the detector in pixels in transposed coordinates. 

175config.detectorList[2].refpos_y = 2047.5 

176 

177# Pixel size in the y dimension in mm 

178config.detectorList[2].pixelSize_y = 0.015 

179 

180# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

181config.detectorList[2].detectorType = 0 

182 

183# x offset from the origin of the camera in mm in the transposed system. 

184config.detectorList[2].offset_x = -185.618 

185 

186# y offset from the origin of the camera in mm in the transposed system. 

187config.detectorList[2].offset_y = 63.775999999999996 

188 

189# Transpose the pixel grid before orienting in focal plane? 

190config.detectorList[2].transposeDetector = False 

191 

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 

196 

197# roll (rotation about x) of the detector in degrees 

198config.detectorList[2].rollDeg = 0.0 

199 

200# Serial string associated with this specific detector 

201config.detectorList[2].serial = '3' 

202 

203# pitch (rotation about y) of the detector in degrees 

204config.detectorList[2].pitchDeg = 0.0 

205 

206# ID of detector slot 

207config.detectorList[2].id = 3 

208 

209config.detectorList[3] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

210# y0 of pixel bounding box 

211config.detectorList[3].bbox_y0 = 0 

212 

213# y1 of pixel bounding box 

214config.detectorList[3].bbox_y1 = 4095 

215 

216# x1 of pixel bounding box 

217config.detectorList[3].bbox_x1 = 2047 

218 

219# x0 of pixel bounding box 

220config.detectorList[3].bbox_x0 = 0 

221 

222# Name of detector slot 

223config.detectorList[3].name = 'S25' 

224 

225# Pixel size in the x dimension in mm 

226config.detectorList[3].pixelSize_x = 0.015 

227 

228# Name of native coordinate system 

229config.detectorList[3].transformDict.nativeSys = 'Pixels' 

230 

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 

234 

235# y position of the reference point in the detector in pixels in transposed coordinates. 

236config.detectorList[3].refpos_y = 2047.5 

237 

238# Pixel size in the y dimension in mm 

239config.detectorList[3].pixelSize_y = 0.015 

240 

241# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

242config.detectorList[3].detectorType = 0 

243 

244# x offset from the origin of the camera in mm in the transposed system. 

245config.detectorList[3].offset_x = -151.832 

246 

247# y offset from the origin of the camera in mm in the transposed system. 

248config.detectorList[3].offset_y = -95.611 

249 

250# Transpose the pixel grid before orienting in focal plane? 

251config.detectorList[3].transposeDetector = False 

252 

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 

257 

258# roll (rotation about x) of the detector in degrees 

259config.detectorList[3].rollDeg = 0.0 

260 

261# Serial string associated with this specific detector 

262config.detectorList[3].serial = '4' 

263 

264# pitch (rotation about y) of the detector in degrees 

265config.detectorList[3].pitchDeg = 0.0 

266 

267# ID of detector slot 

268config.detectorList[3].id = 4 

269 

270config.detectorList[4] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

271# y0 of pixel bounding box 

272config.detectorList[4].bbox_y0 = 0 

273 

274# y1 of pixel bounding box 

275config.detectorList[4].bbox_y1 = 4095 

276 

277# x1 of pixel bounding box 

278config.detectorList[4].bbox_x1 = 2047 

279 

280# x0 of pixel bounding box 

281config.detectorList[4].bbox_x0 = 0 

282 

283# Name of detector slot 

284config.detectorList[4].name = 'S26' 

285 

286# Pixel size in the x dimension in mm 

287config.detectorList[4].pixelSize_x = 0.015 

288 

289# Name of native coordinate system 

290config.detectorList[4].transformDict.nativeSys = 'Pixels' 

291 

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 

295 

296# y position of the reference point in the detector in pixels in transposed coordinates. 

297config.detectorList[4].refpos_y = 2047.5 

298 

299# Pixel size in the y dimension in mm 

300config.detectorList[4].pixelSize_y = 0.015 

301 

302# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

303config.detectorList[4].detectorType = 0 

304 

305# x offset from the origin of the camera in mm in the transposed system. 

306config.detectorList[4].offset_x = -151.87 

307 

308# y offset from the origin of the camera in mm in the transposed system. 

309config.detectorList[4].offset_y = -31.869 

310 

311# Transpose the pixel grid before orienting in focal plane? 

312config.detectorList[4].transposeDetector = False 

313 

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 

318 

319# roll (rotation about x) of the detector in degrees 

320config.detectorList[4].rollDeg = 0.0 

321 

322# Serial string associated with this specific detector 

323config.detectorList[4].serial = '5' 

324 

325# pitch (rotation about y) of the detector in degrees 

326config.detectorList[4].pitchDeg = 0.0 

327 

328# ID of detector slot 

329config.detectorList[4].id = 5 

330 

331config.detectorList[5] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

332# y0 of pixel bounding box 

333config.detectorList[5].bbox_y0 = 0 

334 

335# y1 of pixel bounding box 

336config.detectorList[5].bbox_y1 = 4095 

337 

338# x1 of pixel bounding box 

339config.detectorList[5].bbox_x1 = 2047 

340 

341# x0 of pixel bounding box 

342config.detectorList[5].bbox_x0 = 0 

343 

344# Name of detector slot 

345config.detectorList[5].name = 'S27' 

346 

347# Pixel size in the x dimension in mm 

348config.detectorList[5].pixelSize_x = 0.015 

349 

350# Name of native coordinate system 

351config.detectorList[5].transformDict.nativeSys = 'Pixels' 

352 

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 

356 

357# y position of the reference point in the detector in pixels in transposed coordinates. 

358config.detectorList[5].refpos_y = 2047.5 

359 

360# Pixel size in the y dimension in mm 

361config.detectorList[5].pixelSize_y = 0.015 

362 

363# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

364config.detectorList[5].detectorType = 0 

365 

366# x offset from the origin of the camera in mm in the transposed system. 

367config.detectorList[5].offset_x = -151.904 

368 

369# y offset from the origin of the camera in mm in the transposed system. 

370config.detectorList[5].offset_y = 31.901 

371 

372# Transpose the pixel grid before orienting in focal plane? 

373config.detectorList[5].transposeDetector = False 

374 

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 

379 

380# roll (rotation about x) of the detector in degrees 

381config.detectorList[5].rollDeg = 0.0 

382 

383# Serial string associated with this specific detector 

384config.detectorList[5].serial = '6' 

385 

386# pitch (rotation about y) of the detector in degrees 

387config.detectorList[5].pitchDeg = 0.0 

388 

389# ID of detector slot 

390config.detectorList[5].id = 6 

391 

392config.detectorList[6] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

393# y0 of pixel bounding box 

394config.detectorList[6].bbox_y0 = 0 

395 

396# y1 of pixel bounding box 

397config.detectorList[6].bbox_y1 = 4095 

398 

399# x1 of pixel bounding box 

400config.detectorList[6].bbox_x1 = 2047 

401 

402# x0 of pixel bounding box 

403config.detectorList[6].bbox_x0 = 0 

404 

405# Name of detector slot 

406config.detectorList[6].name = 'S28' 

407 

408# Pixel size in the x dimension in mm 

409config.detectorList[6].pixelSize_x = 0.015 

410 

411# Name of native coordinate system 

412config.detectorList[6].transformDict.nativeSys = 'Pixels' 

413 

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 

417 

418# y position of the reference point in the detector in pixels in transposed coordinates. 

419config.detectorList[6].refpos_y = 2047.5 

420 

421# Pixel size in the y dimension in mm 

422config.detectorList[6].pixelSize_y = 0.015 

423 

424# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

425config.detectorList[6].detectorType = 0 

426 

427# x offset from the origin of the camera in mm in the transposed system. 

428config.detectorList[6].offset_x = -151.85199999999998 

429 

430# y offset from the origin of the camera in mm in the transposed system. 

431config.detectorList[6].offset_y = 95.595 

432 

433# Transpose the pixel grid before orienting in focal plane? 

434config.detectorList[6].transposeDetector = False 

435 

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 

440 

441# roll (rotation about x) of the detector in degrees 

442config.detectorList[6].rollDeg = 0.0 

443 

444# Serial string associated with this specific detector 

445config.detectorList[6].serial = '7' 

446 

447# pitch (rotation about y) of the detector in degrees 

448config.detectorList[6].pitchDeg = 0.0 

449 

450# ID of detector slot 

451config.detectorList[6].id = 7 

452 

453config.detectorList[7] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

454# y0 of pixel bounding box 

455config.detectorList[7].bbox_y0 = 0 

456 

457# y1 of pixel bounding box 

458config.detectorList[7].bbox_y1 = 4095 

459 

460# x1 of pixel bounding box 

461config.detectorList[7].bbox_x1 = 2047 

462 

463# x0 of pixel bounding box 

464config.detectorList[7].bbox_x0 = 0 

465 

466# Name of detector slot 

467config.detectorList[7].name = 'S20' 

468 

469# Pixel size in the x dimension in mm 

470config.detectorList[7].pixelSize_x = 0.015 

471 

472# Name of native coordinate system 

473config.detectorList[7].transformDict.nativeSys = 'Pixels' 

474 

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 

478 

479# y position of the reference point in the detector in pixels in transposed coordinates. 

480config.detectorList[7].refpos_y = 2047.5 

481 

482# Pixel size in the y dimension in mm 

483config.detectorList[7].pixelSize_y = 0.015 

484 

485# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

486config.detectorList[7].detectorType = 0 

487 

488# x offset from the origin of the camera in mm in the transposed system. 

489config.detectorList[7].offset_x = -118.018 

490 

491# y offset from the origin of the camera in mm in the transposed system. 

492config.detectorList[7].offset_y = -127.452 

493 

494# Transpose the pixel grid before orienting in focal plane? 

495config.detectorList[7].transposeDetector = False 

496 

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 

501 

502# roll (rotation about x) of the detector in degrees 

503config.detectorList[7].rollDeg = 0.0 

504 

505# Serial string associated with this specific detector 

506config.detectorList[7].serial = '8' 

507 

508# pitch (rotation about y) of the detector in degrees 

509config.detectorList[7].pitchDeg = 0.0 

510 

511# ID of detector slot 

512config.detectorList[7].id = 8 

513 

514config.detectorList[8] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

515# y0 of pixel bounding box 

516config.detectorList[8].bbox_y0 = 0 

517 

518# y1 of pixel bounding box 

519config.detectorList[8].bbox_y1 = 4095 

520 

521# x1 of pixel bounding box 

522config.detectorList[8].bbox_x1 = 2047 

523 

524# x0 of pixel bounding box 

525config.detectorList[8].bbox_x0 = 0 

526 

527# Name of detector slot 

528config.detectorList[8].name = 'S21' 

529 

530# Pixel size in the x dimension in mm 

531config.detectorList[8].pixelSize_x = 0.015 

532 

533# Name of native coordinate system 

534config.detectorList[8].transformDict.nativeSys = 'Pixels' 

535 

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 

539 

540# y position of the reference point in the detector in pixels in transposed coordinates. 

541config.detectorList[8].refpos_y = 2047.5 

542 

543# Pixel size in the y dimension in mm 

544config.detectorList[8].pixelSize_y = 0.015 

545 

546# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

547config.detectorList[8].detectorType = 0 

548 

549# x offset from the origin of the camera in mm in the transposed system. 

550config.detectorList[8].offset_x = -118.166 

551 

552# y offset from the origin of the camera in mm in the transposed system. 

553config.detectorList[8].offset_y = -63.738 

554 

555# Transpose the pixel grid before orienting in focal plane? 

556config.detectorList[8].transposeDetector = False 

557 

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 

562 

563# roll (rotation about x) of the detector in degrees 

564config.detectorList[8].rollDeg = 0.0 

565 

566# Serial string associated with this specific detector 

567config.detectorList[8].serial = '9' 

568 

569# pitch (rotation about y) of the detector in degrees 

570config.detectorList[8].pitchDeg = 0.0 

571 

572# ID of detector slot 

573config.detectorList[8].id = 9 

574 

575config.detectorList[9] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

576# y0 of pixel bounding box 

577config.detectorList[9].bbox_y0 = 0 

578 

579# y1 of pixel bounding box 

580config.detectorList[9].bbox_y1 = 4095 

581 

582# x1 of pixel bounding box 

583config.detectorList[9].bbox_x1 = 2047 

584 

585# x0 of pixel bounding box 

586config.detectorList[9].bbox_x0 = 0 

587 

588# Name of detector slot 

589config.detectorList[9].name = 'S22' 

590 

591# Pixel size in the x dimension in mm 

592config.detectorList[9].pixelSize_x = 0.015 

593 

594# Name of native coordinate system 

595config.detectorList[9].transformDict.nativeSys = 'Pixels' 

596 

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 

600 

601# y position of the reference point in the detector in pixels in transposed coordinates. 

602config.detectorList[9].refpos_y = 2047.5 

603 

604# Pixel size in the y dimension in mm 

605config.detectorList[9].pixelSize_y = 0.015 

606 

607# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

608config.detectorList[9].detectorType = 0 

609 

610# x offset from the origin of the camera in mm in the transposed system. 

611config.detectorList[9].offset_x = -118.134 

612 

613# y offset from the origin of the camera in mm in the transposed system. 

614config.detectorList[9].offset_y = 0.002000000000000668 

615 

616# Transpose the pixel grid before orienting in focal plane? 

617config.detectorList[9].transposeDetector = False 

618 

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 

623 

624# roll (rotation about x) of the detector in degrees 

625config.detectorList[9].rollDeg = 0.0 

626 

627# Serial string associated with this specific detector 

628config.detectorList[9].serial = '10' 

629 

630# pitch (rotation about y) of the detector in degrees 

631config.detectorList[9].pitchDeg = 0.0 

632 

633# ID of detector slot 

634config.detectorList[9].id = 10 

635 

636config.detectorList[10] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

637# y0 of pixel bounding box 

638config.detectorList[10].bbox_y0 = 0 

639 

640# y1 of pixel bounding box 

641config.detectorList[10].bbox_y1 = 4095 

642 

643# x1 of pixel bounding box 

644config.detectorList[10].bbox_x1 = 2047 

645 

646# x0 of pixel bounding box 

647config.detectorList[10].bbox_x0 = 0 

648 

649# Name of detector slot 

650config.detectorList[10].name = 'S23' 

651 

652# Pixel size in the x dimension in mm 

653config.detectorList[10].pixelSize_x = 0.015 

654 

655# Name of native coordinate system 

656config.detectorList[10].transformDict.nativeSys = 'Pixels' 

657 

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 

661 

662# y position of the reference point in the detector in pixels in transposed coordinates. 

663config.detectorList[10].refpos_y = 2047.5 

664 

665# Pixel size in the y dimension in mm 

666config.detectorList[10].pixelSize_y = 0.015 

667 

668# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

669config.detectorList[10].detectorType = 0 

670 

671# x offset from the origin of the camera in mm in the transposed system. 

672config.detectorList[10].offset_x = -118.17399999999999 

673 

674# y offset from the origin of the camera in mm in the transposed system. 

675config.detectorList[10].offset_y = 63.738 

676 

677# Transpose the pixel grid before orienting in focal plane? 

678config.detectorList[10].transposeDetector = False 

679 

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 

684 

685# roll (rotation about x) of the detector in degrees 

686config.detectorList[10].rollDeg = 0.0 

687 

688# Serial string associated with this specific detector 

689config.detectorList[10].serial = '11' 

690 

691# pitch (rotation about y) of the detector in degrees 

692config.detectorList[10].pitchDeg = 0.0 

693 

694# ID of detector slot 

695config.detectorList[10].id = 11 

696 

697config.detectorList[11] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

698# y0 of pixel bounding box 

699config.detectorList[11].bbox_y0 = 0 

700 

701# y1 of pixel bounding box 

702config.detectorList[11].bbox_y1 = 4095 

703 

704# x1 of pixel bounding box 

705config.detectorList[11].bbox_x1 = 2047 

706 

707# x0 of pixel bounding box 

708config.detectorList[11].bbox_x0 = 0 

709 

710# Name of detector slot 

711config.detectorList[11].name = 'S24' 

712 

713# Pixel size in the x dimension in mm 

714config.detectorList[11].pixelSize_x = 0.015 

715 

716# Name of native coordinate system 

717config.detectorList[11].transformDict.nativeSys = 'Pixels' 

718 

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 

722 

723# y position of the reference point in the detector in pixels in transposed coordinates. 

724config.detectorList[11].refpos_y = 2047.5 

725 

726# Pixel size in the y dimension in mm 

727config.detectorList[11].pixelSize_y = 0.015 

728 

729# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

730config.detectorList[11].detectorType = 0 

731 

732# x offset from the origin of the camera in mm in the transposed system. 

733config.detectorList[11].offset_x = -118.086 

734 

735# y offset from the origin of the camera in mm in the transposed system. 

736config.detectorList[11].offset_y = 127.48599999999999 

737 

738# Transpose the pixel grid before orienting in focal plane? 

739config.detectorList[11].transposeDetector = False 

740 

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 

745 

746# roll (rotation about x) of the detector in degrees 

747config.detectorList[11].rollDeg = 0.0 

748 

749# Serial string associated with this specific detector 

750config.detectorList[11].serial = '12' 

751 

752# pitch (rotation about y) of the detector in degrees 

753config.detectorList[11].pitchDeg = 0.0 

754 

755# ID of detector slot 

756config.detectorList[11].id = 12 

757 

758config.detectorList[12] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

759# y0 of pixel bounding box 

760config.detectorList[12].bbox_y0 = 0 

761 

762# y1 of pixel bounding box 

763config.detectorList[12].bbox_y1 = 4095 

764 

765# x1 of pixel bounding box 

766config.detectorList[12].bbox_x1 = 2047 

767 

768# x0 of pixel bounding box 

769config.detectorList[12].bbox_x0 = 0 

770 

771# Name of detector slot 

772config.detectorList[12].name = 'S14' 

773 

774# Pixel size in the x dimension in mm 

775config.detectorList[12].pixelSize_x = 0.015 

776 

777# Name of native coordinate system 

778config.detectorList[12].transformDict.nativeSys = 'Pixels' 

779 

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 

783 

784# y position of the reference point in the detector in pixels in transposed coordinates. 

785config.detectorList[12].refpos_y = 2047.5 

786 

787# Pixel size in the y dimension in mm 

788config.detectorList[12].pixelSize_y = 0.015 

789 

790# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

791config.detectorList[12].detectorType = 0 

792 

793# x offset from the origin of the camera in mm in the transposed system. 

794config.detectorList[12].offset_x = -84.268 

795 

796# y offset from the origin of the camera in mm in the transposed system. 

797config.detectorList[12].offset_y = -159.323 

798 

799# Transpose the pixel grid before orienting in focal plane? 

800config.detectorList[12].transposeDetector = False 

801 

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 

806 

807# roll (rotation about x) of the detector in degrees 

808config.detectorList[12].rollDeg = 0.0 

809 

810# Serial string associated with this specific detector 

811config.detectorList[12].serial = '13' 

812 

813# pitch (rotation about y) of the detector in degrees 

814config.detectorList[12].pitchDeg = 0.0 

815 

816# ID of detector slot 

817config.detectorList[12].id = 13 

818 

819config.detectorList[13] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

820# y0 of pixel bounding box 

821config.detectorList[13].bbox_y0 = 0 

822 

823# y1 of pixel bounding box 

824config.detectorList[13].bbox_y1 = 4095 

825 

826# x1 of pixel bounding box 

827config.detectorList[13].bbox_x1 = 2047 

828 

829# x0 of pixel bounding box 

830config.detectorList[13].bbox_x0 = 0 

831 

832# Name of detector slot 

833config.detectorList[13].name = 'S15' 

834 

835# Pixel size in the x dimension in mm 

836config.detectorList[13].pixelSize_x = 0.015 

837 

838# Name of native coordinate system 

839config.detectorList[13].transformDict.nativeSys = 'Pixels' 

840 

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 

844 

845# y position of the reference point in the detector in pixels in transposed coordinates. 

846config.detectorList[13].refpos_y = 2047.5 

847 

848# Pixel size in the y dimension in mm 

849config.detectorList[13].pixelSize_y = 0.015 

850 

851# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

852config.detectorList[13].detectorType = 0 

853 

854# x offset from the origin of the camera in mm in the transposed system. 

855config.detectorList[13].offset_x = -84.38 

856 

857# y offset from the origin of the camera in mm in the transposed system. 

858config.detectorList[13].offset_y = -95.689 

859 

860# Transpose the pixel grid before orienting in focal plane? 

861config.detectorList[13].transposeDetector = False 

862 

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 

867 

868# roll (rotation about x) of the detector in degrees 

869config.detectorList[13].rollDeg = 0.0 

870 

871# Serial string associated with this specific detector 

872config.detectorList[13].serial = '14' 

873 

874# pitch (rotation about y) of the detector in degrees 

875config.detectorList[13].pitchDeg = 0.0 

876 

877# ID of detector slot 

878config.detectorList[13].id = 14 

879 

880config.detectorList[14] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

881# y0 of pixel bounding box 

882config.detectorList[14].bbox_y0 = 0 

883 

884# y1 of pixel bounding box 

885config.detectorList[14].bbox_y1 = 4095 

886 

887# x1 of pixel bounding box 

888config.detectorList[14].bbox_x1 = 2047 

889 

890# x0 of pixel bounding box 

891config.detectorList[14].bbox_x0 = 0 

892 

893# Name of detector slot 

894config.detectorList[14].name = 'S16' 

895 

896# Pixel size in the x dimension in mm 

897config.detectorList[14].pixelSize_x = 0.015 

898 

899# Name of native coordinate system 

900config.detectorList[14].transformDict.nativeSys = 'Pixels' 

901 

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 

905 

906# y position of the reference point in the detector in pixels in transposed coordinates. 

907config.detectorList[14].refpos_y = 2047.5 

908 

909# Pixel size in the y dimension in mm 

910config.detectorList[14].pixelSize_y = 0.015 

911 

912# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

913config.detectorList[14].detectorType = 0 

914 

915# x offset from the origin of the camera in mm in the transposed system. 

916config.detectorList[14].offset_x = -84.466 

917 

918# y offset from the origin of the camera in mm in the transposed system. 

919config.detectorList[14].offset_y = -31.907 

920 

921# Transpose the pixel grid before orienting in focal plane? 

922config.detectorList[14].transposeDetector = False 

923 

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 

928 

929# roll (rotation about x) of the detector in degrees 

930config.detectorList[14].rollDeg = 0.0 

931 

932# Serial string associated with this specific detector 

933config.detectorList[14].serial = '15' 

934 

935# pitch (rotation about y) of the detector in degrees 

936config.detectorList[14].pitchDeg = 0.0 

937 

938# ID of detector slot 

939config.detectorList[14].id = 15 

940 

941config.detectorList[15] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

942# y0 of pixel bounding box 

943config.detectorList[15].bbox_y0 = 0 

944 

945# y1 of pixel bounding box 

946config.detectorList[15].bbox_y1 = 4095 

947 

948# x1 of pixel bounding box 

949config.detectorList[15].bbox_x1 = 2047 

950 

951# x0 of pixel bounding box 

952config.detectorList[15].bbox_x0 = 0 

953 

954# Name of detector slot 

955config.detectorList[15].name = 'S17' 

956 

957# Pixel size in the x dimension in mm 

958config.detectorList[15].pixelSize_x = 0.015 

959 

960# Name of native coordinate system 

961config.detectorList[15].transformDict.nativeSys = 'Pixels' 

962 

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 

966 

967# y position of the reference point in the detector in pixels in transposed coordinates. 

968config.detectorList[15].refpos_y = 2047.5 

969 

970# Pixel size in the y dimension in mm 

971config.detectorList[15].pixelSize_y = 0.015 

972 

973# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

974config.detectorList[15].detectorType = 0 

975 

976# x offset from the origin of the camera in mm in the transposed system. 

977config.detectorList[15].offset_x = -84.384 

978 

979# y offset from the origin of the camera in mm in the transposed system. 

980config.detectorList[15].offset_y = 31.891 

981 

982# Transpose the pixel grid before orienting in focal plane? 

983config.detectorList[15].transposeDetector = False 

984 

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 

989 

990# roll (rotation about x) of the detector in degrees 

991config.detectorList[15].rollDeg = 0.0 

992 

993# Serial string associated with this specific detector 

994config.detectorList[15].serial = '16' 

995 

996# pitch (rotation about y) of the detector in degrees 

997config.detectorList[15].pitchDeg = 0.0 

998 

999# ID of detector slot 

1000config.detectorList[15].id = 16 

1001 

1002config.detectorList[16] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

1003# y0 of pixel bounding box 

1004config.detectorList[16].bbox_y0 = 0 

1005 

1006# y1 of pixel bounding box 

1007config.detectorList[16].bbox_y1 = 4095 

1008 

1009# x1 of pixel bounding box 

1010config.detectorList[16].bbox_x1 = 2047 

1011 

1012# x0 of pixel bounding box 

1013config.detectorList[16].bbox_x0 = 0 

1014 

1015# Name of detector slot 

1016config.detectorList[16].name = 'S18' 

1017 

1018# Pixel size in the x dimension in mm 

1019config.detectorList[16].pixelSize_x = 0.015 

1020 

1021# Name of native coordinate system 

1022config.detectorList[16].transformDict.nativeSys = 'Pixels' 

1023 

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 

1027 

1028# y position of the reference point in the detector in pixels in transposed coordinates. 

1029config.detectorList[16].refpos_y = 2047.5 

1030 

1031# Pixel size in the y dimension in mm 

1032config.detectorList[16].pixelSize_y = 0.015 

1033 

1034# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

1035config.detectorList[16].detectorType = 0 

1036 

1037# x offset from the origin of the camera in mm in the transposed system. 

1038config.detectorList[16].offset_x = -84.46 

1039 

1040# y offset from the origin of the camera in mm in the transposed system. 

1041config.detectorList[16].offset_y = 95.663 

1042 

1043# Transpose the pixel grid before orienting in focal plane? 

1044config.detectorList[16].transposeDetector = False 

1045 

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 

1050 

1051# roll (rotation about x) of the detector in degrees 

1052config.detectorList[16].rollDeg = 0.0 

1053 

1054# Serial string associated with this specific detector 

1055config.detectorList[16].serial = '17' 

1056 

1057# pitch (rotation about y) of the detector in degrees 

1058config.detectorList[16].pitchDeg = 0.0 

1059 

1060# ID of detector slot 

1061config.detectorList[16].id = 17 

1062 

1063config.detectorList[17] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

1064# y0 of pixel bounding box 

1065config.detectorList[17].bbox_y0 = 0 

1066 

1067# y1 of pixel bounding box 

1068config.detectorList[17].bbox_y1 = 4095 

1069 

1070# x1 of pixel bounding box 

1071config.detectorList[17].bbox_x1 = 2047 

1072 

1073# x0 of pixel bounding box 

1074config.detectorList[17].bbox_x0 = 0 

1075 

1076# Name of detector slot 

1077config.detectorList[17].name = 'S19' 

1078 

1079# Pixel size in the x dimension in mm 

1080config.detectorList[17].pixelSize_x = 0.015 

1081 

1082# Name of native coordinate system 

1083config.detectorList[17].transformDict.nativeSys = 'Pixels' 

1084 

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 

1088 

1089# y position of the reference point in the detector in pixels in transposed coordinates. 

1090config.detectorList[17].refpos_y = 2047.5 

1091 

1092# Pixel size in the y dimension in mm 

1093config.detectorList[17].pixelSize_y = 0.015 

1094 

1095# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

1096config.detectorList[17].detectorType = 0 

1097 

1098# x offset from the origin of the camera in mm in the transposed system. 

1099config.detectorList[17].offset_x = -84.316 

1100 

1101# y offset from the origin of the camera in mm in the transposed system. 

1102config.detectorList[17].offset_y = 159.413 

1103 

1104# Transpose the pixel grid before orienting in focal plane? 

1105config.detectorList[17].transposeDetector = False 

1106 

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 

1111 

1112# roll (rotation about x) of the detector in degrees 

1113config.detectorList[17].rollDeg = 0.0 

1114 

1115# Serial string associated with this specific detector 

1116config.detectorList[17].serial = '18' 

1117 

1118# pitch (rotation about y) of the detector in degrees 

1119config.detectorList[17].pitchDeg = 0.0 

1120 

1121# ID of detector slot 

1122config.detectorList[17].id = 18 

1123 

1124config.detectorList[18] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

1125# y0 of pixel bounding box 

1126config.detectorList[18].bbox_y0 = 0 

1127 

1128# y1 of pixel bounding box 

1129config.detectorList[18].bbox_y1 = 4095 

1130 

1131# x1 of pixel bounding box 

1132config.detectorList[18].bbox_x1 = 2047 

1133 

1134# x0 of pixel bounding box 

1135config.detectorList[18].bbox_x0 = 0 

1136 

1137# Name of detector slot 

1138config.detectorList[18].name = 'S8' 

1139 

1140# Pixel size in the x dimension in mm 

1141config.detectorList[18].pixelSize_x = 0.015 

1142 

1143# Name of native coordinate system 

1144config.detectorList[18].transformDict.nativeSys = 'Pixels' 

1145 

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 

1149 

1150# y position of the reference point in the detector in pixels in transposed coordinates. 

1151config.detectorList[18].refpos_y = 2047.5 

1152 

1153# Pixel size in the y dimension in mm 

1154config.detectorList[18].pixelSize_y = 0.015 

1155 

1156# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

1157config.detectorList[18].detectorType = 0 

1158 

1159# x offset from the origin of the camera in mm in the transposed system. 

1160config.detectorList[18].offset_x = -50.620000000000005 

1161 

1162# y offset from the origin of the camera in mm in the transposed system. 

1163config.detectorList[18].offset_y = -159.277 

1164 

1165# Transpose the pixel grid before orienting in focal plane? 

1166config.detectorList[18].transposeDetector = False 

1167 

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 

1172 

1173# roll (rotation about x) of the detector in degrees 

1174config.detectorList[18].rollDeg = 0.0 

1175 

1176# Serial string associated with this specific detector 

1177config.detectorList[18].serial = '19' 

1178 

1179# pitch (rotation about y) of the detector in degrees 

1180config.detectorList[18].pitchDeg = 0.0 

1181 

1182# ID of detector slot 

1183config.detectorList[18].id = 19 

1184 

1185config.detectorList[19] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

1186# y0 of pixel bounding box 

1187config.detectorList[19].bbox_y0 = 0 

1188 

1189# y1 of pixel bounding box 

1190config.detectorList[19].bbox_y1 = 4095 

1191 

1192# x1 of pixel bounding box 

1193config.detectorList[19].bbox_x1 = 2047 

1194 

1195# x0 of pixel bounding box 

1196config.detectorList[19].bbox_x0 = 0 

1197 

1198# Name of detector slot 

1199config.detectorList[19].name = 'S9' 

1200 

1201# Pixel size in the x dimension in mm 

1202config.detectorList[19].pixelSize_x = 0.015 

1203 

1204# Name of native coordinate system 

1205config.detectorList[19].transformDict.nativeSys = 'Pixels' 

1206 

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 

1210 

1211# y position of the reference point in the detector in pixels in transposed coordinates. 

1212config.detectorList[19].refpos_y = 2047.5 

1213 

1214# Pixel size in the y dimension in mm 

1215config.detectorList[19].pixelSize_y = 0.015 

1216 

1217# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

1218config.detectorList[19].detectorType = 0 

1219 

1220# x offset from the origin of the camera in mm in the transposed system. 

1221config.detectorList[19].offset_x = -50.596000000000004 

1222 

1223# y offset from the origin of the camera in mm in the transposed system. 

1224config.detectorList[19].offset_y = -95.689 

1225 

1226# Transpose the pixel grid before orienting in focal plane? 

1227config.detectorList[19].transposeDetector = False 

1228 

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 

1233 

1234# roll (rotation about x) of the detector in degrees 

1235config.detectorList[19].rollDeg = 0.0 

1236 

1237# Serial string associated with this specific detector 

1238config.detectorList[19].serial = '20' 

1239 

1240# pitch (rotation about y) of the detector in degrees 

1241config.detectorList[19].pitchDeg = 0.0 

1242 

1243# ID of detector slot 

1244config.detectorList[19].id = 20 

1245 

1246config.detectorList[20] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

1247# y0 of pixel bounding box 

1248config.detectorList[20].bbox_y0 = 0 

1249 

1250# y1 of pixel bounding box 

1251config.detectorList[20].bbox_y1 = 4095 

1252 

1253# x1 of pixel bounding box 

1254config.detectorList[20].bbox_x1 = 2047 

1255 

1256# x0 of pixel bounding box 

1257config.detectorList[20].bbox_x0 = 0 

1258 

1259# Name of detector slot 

1260config.detectorList[20].name = 'S10' 

1261 

1262# Pixel size in the x dimension in mm 

1263config.detectorList[20].pixelSize_x = 0.015 

1264 

1265# Name of native coordinate system 

1266config.detectorList[20].transformDict.nativeSys = 'Pixels' 

1267 

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 

1271 

1272# y position of the reference point in the detector in pixels in transposed coordinates. 

1273config.detectorList[20].refpos_y = 2047.5 

1274 

1275# Pixel size in the y dimension in mm 

1276config.detectorList[20].pixelSize_y = 0.015 

1277 

1278# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

1279config.detectorList[20].detectorType = 0 

1280 

1281# x offset from the origin of the camera in mm in the transposed system. 

1282config.detectorList[20].offset_x = -50.7 

1283 

1284# y offset from the origin of the camera in mm in the transposed system. 

1285config.detectorList[20].offset_y = -31.931 

1286 

1287# Transpose the pixel grid before orienting in focal plane? 

1288config.detectorList[20].transposeDetector = False 

1289 

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 

1294 

1295# roll (rotation about x) of the detector in degrees 

1296config.detectorList[20].rollDeg = 0.0 

1297 

1298# Serial string associated with this specific detector 

1299config.detectorList[20].serial = '21' 

1300 

1301# pitch (rotation about y) of the detector in degrees 

1302config.detectorList[20].pitchDeg = 0.0 

1303 

1304# ID of detector slot 

1305config.detectorList[20].id = 21 

1306 

1307config.detectorList[21] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

1308# y0 of pixel bounding box 

1309config.detectorList[21].bbox_y0 = 0 

1310 

1311# y1 of pixel bounding box 

1312config.detectorList[21].bbox_y1 = 4095 

1313 

1314# x1 of pixel bounding box 

1315config.detectorList[21].bbox_x1 = 2047 

1316 

1317# x0 of pixel bounding box 

1318config.detectorList[21].bbox_x0 = 0 

1319 

1320# Name of detector slot 

1321config.detectorList[21].name = 'S11' 

1322 

1323# Pixel size in the x dimension in mm 

1324config.detectorList[21].pixelSize_x = 0.015 

1325 

1326# Name of native coordinate system 

1327config.detectorList[21].transformDict.nativeSys = 'Pixels' 

1328 

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 

1332 

1333# y position of the reference point in the detector in pixels in transposed coordinates. 

1334config.detectorList[21].refpos_y = 2047.5 

1335 

1336# Pixel size in the y dimension in mm 

1337config.detectorList[21].pixelSize_y = 0.015 

1338 

1339# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

1340config.detectorList[21].detectorType = 0 

1341 

1342# x offset from the origin of the camera in mm in the transposed system. 

1343config.detectorList[21].offset_x = -50.757999999999996 

1344 

1345# y offset from the origin of the camera in mm in the transposed system. 

1346config.detectorList[21].offset_y = 31.915 

1347 

1348# Transpose the pixel grid before orienting in focal plane? 

1349config.detectorList[21].transposeDetector = False 

1350 

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 

1355 

1356# roll (rotation about x) of the detector in degrees 

1357config.detectorList[21].rollDeg = 0.0 

1358 

1359# Serial string associated with this specific detector 

1360config.detectorList[21].serial = '22' 

1361 

1362# pitch (rotation about y) of the detector in degrees 

1363config.detectorList[21].pitchDeg = 0.0 

1364 

1365# ID of detector slot 

1366config.detectorList[21].id = 22 

1367 

1368config.detectorList[22] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

1369# y0 of pixel bounding box 

1370config.detectorList[22].bbox_y0 = 0 

1371 

1372# y1 of pixel bounding box 

1373config.detectorList[22].bbox_y1 = 4095 

1374 

1375# x1 of pixel bounding box 

1376config.detectorList[22].bbox_x1 = 2047 

1377 

1378# x0 of pixel bounding box 

1379config.detectorList[22].bbox_x0 = 0 

1380 

1381# Name of detector slot 

1382config.detectorList[22].name = 'S12' 

1383 

1384# Pixel size in the x dimension in mm 

1385config.detectorList[22].pixelSize_x = 0.015 

1386 

1387# Name of native coordinate system 

1388config.detectorList[22].transformDict.nativeSys = 'Pixels' 

1389 

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 

1393 

1394# y position of the reference point in the detector in pixels in transposed coordinates. 

1395config.detectorList[22].refpos_y = 2047.5 

1396 

1397# Pixel size in the y dimension in mm 

1398config.detectorList[22].pixelSize_y = 0.015 

1399 

1400# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

1401config.detectorList[22].detectorType = 0 

1402 

1403# x offset from the origin of the camera in mm in the transposed system. 

1404config.detectorList[22].offset_x = -50.69800000000001 

1405 

1406# y offset from the origin of the camera in mm in the transposed system. 

1407config.detectorList[22].offset_y = 95.761 

1408 

1409# Transpose the pixel grid before orienting in focal plane? 

1410config.detectorList[22].transposeDetector = False 

1411 

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 

1416 

1417# roll (rotation about x) of the detector in degrees 

1418config.detectorList[22].rollDeg = 0.0 

1419 

1420# Serial string associated with this specific detector 

1421config.detectorList[22].serial = '23' 

1422 

1423# pitch (rotation about y) of the detector in degrees 

1424config.detectorList[22].pitchDeg = 0.0 

1425 

1426# ID of detector slot 

1427config.detectorList[22].id = 23 

1428 

1429config.detectorList[23] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

1430# y0 of pixel bounding box 

1431config.detectorList[23].bbox_y0 = 0 

1432 

1433# y1 of pixel bounding box 

1434config.detectorList[23].bbox_y1 = 4095 

1435 

1436# x1 of pixel bounding box 

1437config.detectorList[23].bbox_x1 = 2047 

1438 

1439# x0 of pixel bounding box 

1440config.detectorList[23].bbox_x0 = 0 

1441 

1442# Name of detector slot 

1443config.detectorList[23].name = 'S13' 

1444 

1445# Pixel size in the x dimension in mm 

1446config.detectorList[23].pixelSize_x = 0.015 

1447 

1448# Name of native coordinate system 

1449config.detectorList[23].transformDict.nativeSys = 'Pixels' 

1450 

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 

1454 

1455# y position of the reference point in the detector in pixels in transposed coordinates. 

1456config.detectorList[23].refpos_y = 2047.5 

1457 

1458# Pixel size in the y dimension in mm 

1459config.detectorList[23].pixelSize_y = 0.015 

1460 

1461# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

1462config.detectorList[23].detectorType = 0 

1463 

1464# x offset from the origin of the camera in mm in the transposed system. 

1465config.detectorList[23].offset_x = -50.634 

1466 

1467# y offset from the origin of the camera in mm in the transposed system. 

1468config.detectorList[23].offset_y = 159.391 

1469 

1470# Transpose the pixel grid before orienting in focal plane? 

1471config.detectorList[23].transposeDetector = False 

1472 

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 

1477 

1478# roll (rotation about x) of the detector in degrees 

1479config.detectorList[23].rollDeg = 0.0 

1480 

1481# Serial string associated with this specific detector 

1482config.detectorList[23].serial = '24' 

1483 

1484# pitch (rotation about y) of the detector in degrees 

1485config.detectorList[23].pitchDeg = 0.0 

1486 

1487# ID of detector slot 

1488config.detectorList[23].id = 24 

1489 

1490config.detectorList[24] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

1491# y0 of pixel bounding box 

1492config.detectorList[24].bbox_y0 = 0 

1493 

1494# y1 of pixel bounding box 

1495config.detectorList[24].bbox_y1 = 4095 

1496 

1497# x1 of pixel bounding box 

1498config.detectorList[24].bbox_x1 = 2047 

1499 

1500# x0 of pixel bounding box 

1501config.detectorList[24].bbox_x0 = 0 

1502 

1503# Name of detector slot 

1504config.detectorList[24].name = 'S1' 

1505 

1506# Pixel size in the x dimension in mm 

1507config.detectorList[24].pixelSize_x = 0.015 

1508 

1509# Name of native coordinate system 

1510config.detectorList[24].transformDict.nativeSys = 'Pixels' 

1511 

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 

1515 

1516# y position of the reference point in the detector in pixels in transposed coordinates. 

1517config.detectorList[24].refpos_y = 2047.5 

1518 

1519# Pixel size in the y dimension in mm 

1520config.detectorList[24].pixelSize_y = 0.015 

1521 

1522# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

1523config.detectorList[24].detectorType = 0 

1524 

1525# x offset from the origin of the camera in mm in the transposed system. 

1526config.detectorList[24].offset_x = -16.798000000000002 

1527 

1528# y offset from the origin of the camera in mm in the transposed system. 

1529config.detectorList[24].offset_y = -191.216 

1530 

1531# Transpose the pixel grid before orienting in focal plane? 

1532config.detectorList[24].transposeDetector = False 

1533 

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 

1538 

1539# roll (rotation about x) of the detector in degrees 

1540config.detectorList[24].rollDeg = 0.0 

1541 

1542# Serial string associated with this specific detector 

1543config.detectorList[24].serial = '25' 

1544 

1545# pitch (rotation about y) of the detector in degrees 

1546config.detectorList[24].pitchDeg = 0.0 

1547 

1548# ID of detector slot 

1549config.detectorList[24].id = 25 

1550 

1551config.detectorList[25] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

1552# y0 of pixel bounding box 

1553config.detectorList[25].bbox_y0 = 0 

1554 

1555# y1 of pixel bounding box 

1556config.detectorList[25].bbox_y1 = 4095 

1557 

1558# x1 of pixel bounding box 

1559config.detectorList[25].bbox_x1 = 2047 

1560 

1561# x0 of pixel bounding box 

1562config.detectorList[25].bbox_x0 = 0 

1563 

1564# Name of detector slot 

1565config.detectorList[25].name = 'S2' 

1566 

1567# Pixel size in the x dimension in mm 

1568config.detectorList[25].pixelSize_x = 0.015 

1569 

1570# Name of native coordinate system 

1571config.detectorList[25].transformDict.nativeSys = 'Pixels' 

1572 

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 

1576 

1577# y position of the reference point in the detector in pixels in transposed coordinates. 

1578config.detectorList[25].refpos_y = 2047.5 

1579 

1580# Pixel size in the y dimension in mm 

1581config.detectorList[25].pixelSize_y = 0.015 

1582 

1583# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

1584config.detectorList[25].detectorType = 0 

1585 

1586# x offset from the origin of the camera in mm in the transposed system. 

1587config.detectorList[25].offset_x = -16.894 

1588 

1589# y offset from the origin of the camera in mm in the transposed system. 

1590config.detectorList[25].offset_y = -127.524 

1591 

1592# Transpose the pixel grid before orienting in focal plane? 

1593config.detectorList[25].transposeDetector = False 

1594 

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 

1599 

1600# roll (rotation about x) of the detector in degrees 

1601config.detectorList[25].rollDeg = 0.0 

1602 

1603# Serial string associated with this specific detector 

1604config.detectorList[25].serial = '26' 

1605 

1606# pitch (rotation about y) of the detector in degrees 

1607config.detectorList[25].pitchDeg = 0.0 

1608 

1609# ID of detector slot 

1610config.detectorList[25].id = 26 

1611 

1612config.detectorList[26] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

1613# y0 of pixel bounding box 

1614config.detectorList[26].bbox_y0 = 0 

1615 

1616# y1 of pixel bounding box 

1617config.detectorList[26].bbox_y1 = 4095 

1618 

1619# x1 of pixel bounding box 

1620config.detectorList[26].bbox_x1 = 2047 

1621 

1622# x0 of pixel bounding box 

1623config.detectorList[26].bbox_x0 = 0 

1624 

1625# Name of detector slot 

1626config.detectorList[26].name = 'S3' 

1627 

1628# Pixel size in the x dimension in mm 

1629config.detectorList[26].pixelSize_x = 0.015 

1630 

1631# Name of native coordinate system 

1632config.detectorList[26].transformDict.nativeSys = 'Pixels' 

1633 

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 

1637 

1638# y position of the reference point in the detector in pixels in transposed coordinates. 

1639config.detectorList[26].refpos_y = 2047.5 

1640 

1641# Pixel size in the y dimension in mm 

1642config.detectorList[26].pixelSize_y = 0.015 

1643 

1644# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

1645config.detectorList[26].detectorType = 0 

1646 

1647# x offset from the origin of the camera in mm in the transposed system. 

1648config.detectorList[26].offset_x = -16.85 

1649 

1650# y offset from the origin of the camera in mm in the transposed system. 

1651config.detectorList[26].offset_y = -63.792 

1652 

1653# Transpose the pixel grid before orienting in focal plane? 

1654config.detectorList[26].transposeDetector = False 

1655 

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 

1660 

1661# roll (rotation about x) of the detector in degrees 

1662config.detectorList[26].rollDeg = 0.0 

1663 

1664# Serial string associated with this specific detector 

1665config.detectorList[26].serial = '27' 

1666 

1667# pitch (rotation about y) of the detector in degrees 

1668config.detectorList[26].pitchDeg = 0.0 

1669 

1670# ID of detector slot 

1671config.detectorList[26].id = 27 

1672 

1673config.detectorList[27] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

1674# y0 of pixel bounding box 

1675config.detectorList[27].bbox_y0 = 0 

1676 

1677# y1 of pixel bounding box 

1678config.detectorList[27].bbox_y1 = 4095 

1679 

1680# x1 of pixel bounding box 

1681config.detectorList[27].bbox_x1 = 2047 

1682 

1683# x0 of pixel bounding box 

1684config.detectorList[27].bbox_x0 = 0 

1685 

1686# Name of detector slot 

1687config.detectorList[27].name = 'S4' 

1688 

1689# Pixel size in the x dimension in mm 

1690config.detectorList[27].pixelSize_x = 0.015 

1691 

1692# Name of native coordinate system 

1693config.detectorList[27].transformDict.nativeSys = 'Pixels' 

1694 

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 

1698 

1699# y position of the reference point in the detector in pixels in transposed coordinates. 

1700config.detectorList[27].refpos_y = 2047.5 

1701 

1702# Pixel size in the y dimension in mm 

1703config.detectorList[27].pixelSize_y = 0.015 

1704 

1705# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

1706config.detectorList[27].detectorType = 0 

1707 

1708# x offset from the origin of the camera in mm in the transposed system. 

1709config.detectorList[27].offset_x = -16.892000000000003 

1710 

1711# y offset from the origin of the camera in mm in the transposed system. 

1712config.detectorList[27].offset_y = 0.09200000000000053 

1713 

1714# Transpose the pixel grid before orienting in focal plane? 

1715config.detectorList[27].transposeDetector = False 

1716 

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 

1721 

1722# roll (rotation about x) of the detector in degrees 

1723config.detectorList[27].rollDeg = 0.0 

1724 

1725# Serial string associated with this specific detector 

1726config.detectorList[27].serial = '28' 

1727 

1728# pitch (rotation about y) of the detector in degrees 

1729config.detectorList[27].pitchDeg = 0.0 

1730 

1731# ID of detector slot 

1732config.detectorList[27].id = 28 

1733 

1734config.detectorList[28] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

1735# y0 of pixel bounding box 

1736config.detectorList[28].bbox_y0 = 0 

1737 

1738# y1 of pixel bounding box 

1739config.detectorList[28].bbox_y1 = 4095 

1740 

1741# x1 of pixel bounding box 

1742config.detectorList[28].bbox_x1 = 2047 

1743 

1744# x0 of pixel bounding box 

1745config.detectorList[28].bbox_x0 = 0 

1746 

1747# Name of detector slot 

1748config.detectorList[28].name = 'S5' 

1749 

1750# Pixel size in the x dimension in mm 

1751config.detectorList[28].pixelSize_x = 0.015 

1752 

1753# Name of native coordinate system 

1754config.detectorList[28].transformDict.nativeSys = 'Pixels' 

1755 

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 

1759 

1760# y position of the reference point in the detector in pixels in transposed coordinates. 

1761config.detectorList[28].refpos_y = 2047.5 

1762 

1763# Pixel size in the y dimension in mm 

1764config.detectorList[28].pixelSize_y = 0.015 

1765 

1766# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

1767config.detectorList[28].detectorType = 0 

1768 

1769# x offset from the origin of the camera in mm in the transposed system. 

1770config.detectorList[28].offset_x = -16.836 

1771 

1772# y offset from the origin of the camera in mm in the transposed system. 

1773config.detectorList[28].offset_y = 63.824 

1774 

1775# Transpose the pixel grid before orienting in focal plane? 

1776config.detectorList[28].transposeDetector = False 

1777 

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 

1782 

1783# roll (rotation about x) of the detector in degrees 

1784config.detectorList[28].rollDeg = 0.0 

1785 

1786# Serial string associated with this specific detector 

1787config.detectorList[28].serial = '29' 

1788 

1789# pitch (rotation about y) of the detector in degrees 

1790config.detectorList[28].pitchDeg = 0.0 

1791 

1792# ID of detector slot 

1793config.detectorList[28].id = 29 

1794 

1795config.detectorList[29] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

1796# y0 of pixel bounding box 

1797config.detectorList[29].bbox_y0 = 0 

1798 

1799# y1 of pixel bounding box 

1800config.detectorList[29].bbox_y1 = 4095 

1801 

1802# x1 of pixel bounding box 

1803config.detectorList[29].bbox_x1 = 2047 

1804 

1805# x0 of pixel bounding box 

1806config.detectorList[29].bbox_x0 = 0 

1807 

1808# Name of detector slot 

1809config.detectorList[29].name = 'S6' 

1810 

1811# Pixel size in the x dimension in mm 

1812config.detectorList[29].pixelSize_x = 0.015 

1813 

1814# Name of native coordinate system 

1815config.detectorList[29].transformDict.nativeSys = 'Pixels' 

1816 

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 

1820 

1821# y position of the reference point in the detector in pixels in transposed coordinates. 

1822config.detectorList[29].refpos_y = 2047.5 

1823 

1824# Pixel size in the y dimension in mm 

1825config.detectorList[29].pixelSize_y = 0.015 

1826 

1827# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

1828config.detectorList[29].detectorType = 0 

1829 

1830# x offset from the origin of the camera in mm in the transposed system. 

1831config.detectorList[29].offset_x = -16.85 

1832 

1833# y offset from the origin of the camera in mm in the transposed system. 

1834config.detectorList[29].offset_y = 127.636 

1835 

1836# Transpose the pixel grid before orienting in focal plane? 

1837config.detectorList[29].transposeDetector = False 

1838 

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 

1843 

1844# roll (rotation about x) of the detector in degrees 

1845config.detectorList[29].rollDeg = 0.0 

1846 

1847# Serial string associated with this specific detector 

1848config.detectorList[29].serial = '30' 

1849 

1850# pitch (rotation about y) of the detector in degrees 

1851config.detectorList[29].pitchDeg = 0.0 

1852 

1853# ID of detector slot 

1854config.detectorList[29].id = 30 

1855 

1856config.detectorList[30] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

1857# y0 of pixel bounding box 

1858config.detectorList[30].bbox_y0 = 0 

1859 

1860# y1 of pixel bounding box 

1861config.detectorList[30].bbox_y1 = 4095 

1862 

1863# x1 of pixel bounding box 

1864config.detectorList[30].bbox_x1 = 2047 

1865 

1866# x0 of pixel bounding box 

1867config.detectorList[30].bbox_x0 = 0 

1868 

1869# Name of detector slot 

1870config.detectorList[30].name = 'S7' 

1871 

1872# Pixel size in the x dimension in mm 

1873config.detectorList[30].pixelSize_x = 0.015 

1874 

1875# Name of native coordinate system 

1876config.detectorList[30].transformDict.nativeSys = 'Pixels' 

1877 

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 

1881 

1882# y position of the reference point in the detector in pixels in transposed coordinates. 

1883config.detectorList[30].refpos_y = 2047.5 

1884 

1885# Pixel size in the y dimension in mm 

1886config.detectorList[30].pixelSize_y = 0.015 

1887 

1888# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

1889config.detectorList[30].detectorType = 0 

1890 

1891# x offset from the origin of the camera in mm in the transposed system. 

1892config.detectorList[30].offset_x = -16.898 

1893 

1894# y offset from the origin of the camera in mm in the transposed system. 

1895config.detectorList[30].offset_y = 191.268 

1896 

1897# Transpose the pixel grid before orienting in focal plane? 

1898config.detectorList[30].transposeDetector = False 

1899 

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 

1904 

1905# roll (rotation about x) of the detector in degrees 

1906config.detectorList[30].rollDeg = 0.0 

1907 

1908# Serial string associated with this specific detector 

1909config.detectorList[30].serial = '31' 

1910 

1911# pitch (rotation about y) of the detector in degrees 

1912config.detectorList[30].pitchDeg = 0.0 

1913 

1914# ID of detector slot 

1915config.detectorList[30].id = 31 

1916 

1917config.detectorList[31] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

1918# y0 of pixel bounding box 

1919config.detectorList[31].bbox_y0 = 0 

1920 

1921# y1 of pixel bounding box 

1922config.detectorList[31].bbox_y1 = 4095 

1923 

1924# x1 of pixel bounding box 

1925config.detectorList[31].bbox_x1 = 2047 

1926 

1927# x0 of pixel bounding box 

1928config.detectorList[31].bbox_x0 = 0 

1929 

1930# Name of detector slot 

1931config.detectorList[31].name = 'N1' 

1932 

1933# Pixel size in the x dimension in mm 

1934config.detectorList[31].pixelSize_x = 0.015 

1935 

1936# Name of native coordinate system 

1937config.detectorList[31].transformDict.nativeSys = 'Pixels' 

1938 

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 

1942 

1943# y position of the reference point in the detector in pixels in transposed coordinates. 

1944config.detectorList[31].refpos_y = 2047.5 

1945 

1946# Pixel size in the y dimension in mm 

1947config.detectorList[31].pixelSize_y = 0.015 

1948 

1949# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

1950config.detectorList[31].detectorType = 0 

1951 

1952# x offset from the origin of the camera in mm in the transposed system. 

1953config.detectorList[31].offset_x = 16.894 

1954 

1955# y offset from the origin of the camera in mm in the transposed system. 

1956config.detectorList[31].offset_y = -191.252 

1957 

1958# Transpose the pixel grid before orienting in focal plane? 

1959config.detectorList[31].transposeDetector = False 

1960 

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 

1965 

1966# roll (rotation about x) of the detector in degrees 

1967config.detectorList[31].rollDeg = 0.0 

1968 

1969# Serial string associated with this specific detector 

1970config.detectorList[31].serial = '32' 

1971 

1972# pitch (rotation about y) of the detector in degrees 

1973config.detectorList[31].pitchDeg = 0.0 

1974 

1975# ID of detector slot 

1976config.detectorList[31].id = 32 

1977 

1978config.detectorList[32] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

1979# y0 of pixel bounding box 

1980config.detectorList[32].bbox_y0 = 0 

1981 

1982# y1 of pixel bounding box 

1983config.detectorList[32].bbox_y1 = 4095 

1984 

1985# x1 of pixel bounding box 

1986config.detectorList[32].bbox_x1 = 2047 

1987 

1988# x0 of pixel bounding box 

1989config.detectorList[32].bbox_x0 = 0 

1990 

1991# Name of detector slot 

1992config.detectorList[32].name = 'N2' 

1993 

1994# Pixel size in the x dimension in mm 

1995config.detectorList[32].pixelSize_x = 0.015 

1996 

1997# Name of native coordinate system 

1998config.detectorList[32].transformDict.nativeSys = 'Pixels' 

1999 

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 

2003 

2004# y position of the reference point in the detector in pixels in transposed coordinates. 

2005config.detectorList[32].refpos_y = 2047.5 

2006 

2007# Pixel size in the y dimension in mm 

2008config.detectorList[32].pixelSize_y = 0.015 

2009 

2010# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

2011config.detectorList[32].detectorType = 0 

2012 

2013# x offset from the origin of the camera in mm in the transposed system. 

2014config.detectorList[32].offset_x = 16.884 

2015 

2016# y offset from the origin of the camera in mm in the transposed system. 

2017config.detectorList[32].offset_y = -127.54599999999999 

2018 

2019# Transpose the pixel grid before orienting in focal plane? 

2020config.detectorList[32].transposeDetector = False 

2021 

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 

2026 

2027# roll (rotation about x) of the detector in degrees 

2028config.detectorList[32].rollDeg = 0.0 

2029 

2030# Serial string associated with this specific detector 

2031config.detectorList[32].serial = '33' 

2032 

2033# pitch (rotation about y) of the detector in degrees 

2034config.detectorList[32].pitchDeg = 0.0 

2035 

2036# ID of detector slot 

2037config.detectorList[32].id = 33 

2038 

2039config.detectorList[33] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

2040# y0 of pixel bounding box 

2041config.detectorList[33].bbox_y0 = 0 

2042 

2043# y1 of pixel bounding box 

2044config.detectorList[33].bbox_y1 = 4095 

2045 

2046# x1 of pixel bounding box 

2047config.detectorList[33].bbox_x1 = 2047 

2048 

2049# x0 of pixel bounding box 

2050config.detectorList[33].bbox_x0 = 0 

2051 

2052# Name of detector slot 

2053config.detectorList[33].name = 'N3' 

2054 

2055# Pixel size in the x dimension in mm 

2056config.detectorList[33].pixelSize_x = 0.015 

2057 

2058# Name of native coordinate system 

2059config.detectorList[33].transformDict.nativeSys = 'Pixels' 

2060 

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 

2064 

2065# y position of the reference point in the detector in pixels in transposed coordinates. 

2066config.detectorList[33].refpos_y = 2047.5 

2067 

2068# Pixel size in the y dimension in mm 

2069config.detectorList[33].pixelSize_y = 0.015 

2070 

2071# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

2072config.detectorList[33].detectorType = 0 

2073 

2074# x offset from the origin of the camera in mm in the transposed system. 

2075config.detectorList[33].offset_x = 16.921999999999997 

2076 

2077# y offset from the origin of the camera in mm in the transposed system. 

2078config.detectorList[33].offset_y = -63.836 

2079 

2080# Transpose the pixel grid before orienting in focal plane? 

2081config.detectorList[33].transposeDetector = False 

2082 

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 

2087 

2088# roll (rotation about x) of the detector in degrees 

2089config.detectorList[33].rollDeg = 0.0 

2090 

2091# Serial string associated with this specific detector 

2092config.detectorList[33].serial = '34' 

2093 

2094# pitch (rotation about y) of the detector in degrees 

2095config.detectorList[33].pitchDeg = 0.0 

2096 

2097# ID of detector slot 

2098config.detectorList[33].id = 34 

2099 

2100config.detectorList[34] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

2101# y0 of pixel bounding box 

2102config.detectorList[34].bbox_y0 = 0 

2103 

2104# y1 of pixel bounding box 

2105config.detectorList[34].bbox_y1 = 4095 

2106 

2107# x1 of pixel bounding box 

2108config.detectorList[34].bbox_x1 = 2047 

2109 

2110# x0 of pixel bounding box 

2111config.detectorList[34].bbox_x0 = 0 

2112 

2113# Name of detector slot 

2114config.detectorList[34].name = 'N4' 

2115 

2116# Pixel size in the x dimension in mm 

2117config.detectorList[34].pixelSize_x = 0.015 

2118 

2119# Name of native coordinate system 

2120config.detectorList[34].transformDict.nativeSys = 'Pixels' 

2121 

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 

2125 

2126# y position of the reference point in the detector in pixels in transposed coordinates. 

2127config.detectorList[34].refpos_y = 2047.5 

2128 

2129# Pixel size in the y dimension in mm 

2130config.detectorList[34].pixelSize_y = 0.015 

2131 

2132# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

2133config.detectorList[34].detectorType = 0 

2134 

2135# x offset from the origin of the camera in mm in the transposed system. 

2136config.detectorList[34].offset_x = 16.908 

2137 

2138# y offset from the origin of the camera in mm in the transposed system. 

2139config.detectorList[34].offset_y = -0.017999999999998906 

2140 

2141# Transpose the pixel grid before orienting in focal plane? 

2142config.detectorList[34].transposeDetector = False 

2143 

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 

2148 

2149# roll (rotation about x) of the detector in degrees 

2150config.detectorList[34].rollDeg = 0.0 

2151 

2152# Serial string associated with this specific detector 

2153config.detectorList[34].serial = '35' 

2154 

2155# pitch (rotation about y) of the detector in degrees 

2156config.detectorList[34].pitchDeg = 0.0 

2157 

2158# ID of detector slot 

2159config.detectorList[34].id = 35 

2160 

2161config.detectorList[35] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

2162# y0 of pixel bounding box 

2163config.detectorList[35].bbox_y0 = 0 

2164 

2165# y1 of pixel bounding box 

2166config.detectorList[35].bbox_y1 = 4095 

2167 

2168# x1 of pixel bounding box 

2169config.detectorList[35].bbox_x1 = 2047 

2170 

2171# x0 of pixel bounding box 

2172config.detectorList[35].bbox_x0 = 0 

2173 

2174# Name of detector slot 

2175config.detectorList[35].name = 'N5' 

2176 

2177# Pixel size in the x dimension in mm 

2178config.detectorList[35].pixelSize_x = 0.015 

2179 

2180# Name of native coordinate system 

2181config.detectorList[35].transformDict.nativeSys = 'Pixels' 

2182 

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 

2186 

2187# y position of the reference point in the detector in pixels in transposed coordinates. 

2188config.detectorList[35].refpos_y = 2047.5 

2189 

2190# Pixel size in the y dimension in mm 

2191config.detectorList[35].pixelSize_y = 0.015 

2192 

2193# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

2194config.detectorList[35].detectorType = 0 

2195 

2196# x offset from the origin of the camera in mm in the transposed system. 

2197config.detectorList[35].offset_x = 16.978 

2198 

2199# y offset from the origin of the camera in mm in the transposed system. 

2200config.detectorList[35].offset_y = 63.708 

2201 

2202# Transpose the pixel grid before orienting in focal plane? 

2203config.detectorList[35].transposeDetector = False 

2204 

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 

2209 

2210# roll (rotation about x) of the detector in degrees 

2211config.detectorList[35].rollDeg = 0.0 

2212 

2213# Serial string associated with this specific detector 

2214config.detectorList[35].serial = '36' 

2215 

2216# pitch (rotation about y) of the detector in degrees 

2217config.detectorList[35].pitchDeg = 0.0 

2218 

2219# ID of detector slot 

2220config.detectorList[35].id = 36 

2221 

2222config.detectorList[36] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

2223# y0 of pixel bounding box 

2224config.detectorList[36].bbox_y0 = 0 

2225 

2226# y1 of pixel bounding box 

2227config.detectorList[36].bbox_y1 = 4095 

2228 

2229# x1 of pixel bounding box 

2230config.detectorList[36].bbox_x1 = 2047 

2231 

2232# x0 of pixel bounding box 

2233config.detectorList[36].bbox_x0 = 0 

2234 

2235# Name of detector slot 

2236config.detectorList[36].name = 'N6' 

2237 

2238# Pixel size in the x dimension in mm 

2239config.detectorList[36].pixelSize_x = 0.015 

2240 

2241# Name of native coordinate system 

2242config.detectorList[36].transformDict.nativeSys = 'Pixels' 

2243 

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 

2247 

2248# y position of the reference point in the detector in pixels in transposed coordinates. 

2249config.detectorList[36].refpos_y = 2047.5 

2250 

2251# Pixel size in the y dimension in mm 

2252config.detectorList[36].pixelSize_y = 0.015 

2253 

2254# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

2255config.detectorList[36].detectorType = 0 

2256 

2257# x offset from the origin of the camera in mm in the transposed system. 

2258config.detectorList[36].offset_x = 16.872 

2259 

2260# y offset from the origin of the camera in mm in the transposed system. 

2261config.detectorList[36].offset_y = 127.47999999999999 

2262 

2263# Transpose the pixel grid before orienting in focal plane? 

2264config.detectorList[36].transposeDetector = False 

2265 

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 

2270 

2271# roll (rotation about x) of the detector in degrees 

2272config.detectorList[36].rollDeg = 0.0 

2273 

2274# Serial string associated with this specific detector 

2275config.detectorList[36].serial = '37' 

2276 

2277# pitch (rotation about y) of the detector in degrees 

2278config.detectorList[36].pitchDeg = 0.0 

2279 

2280# ID of detector slot 

2281config.detectorList[36].id = 37 

2282 

2283config.detectorList[37] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

2284# y0 of pixel bounding box 

2285config.detectorList[37].bbox_y0 = 0 

2286 

2287# y1 of pixel bounding box 

2288config.detectorList[37].bbox_y1 = 4095 

2289 

2290# x1 of pixel bounding box 

2291config.detectorList[37].bbox_x1 = 2047 

2292 

2293# x0 of pixel bounding box 

2294config.detectorList[37].bbox_x0 = 0 

2295 

2296# Name of detector slot 

2297config.detectorList[37].name = 'N7' 

2298 

2299# Pixel size in the x dimension in mm 

2300config.detectorList[37].pixelSize_x = 0.015 

2301 

2302# Name of native coordinate system 

2303config.detectorList[37].transformDict.nativeSys = 'Pixels' 

2304 

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 

2308 

2309# y position of the reference point in the detector in pixels in transposed coordinates. 

2310config.detectorList[37].refpos_y = 2047.5 

2311 

2312# Pixel size in the y dimension in mm 

2313config.detectorList[37].pixelSize_y = 0.015 

2314 

2315# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

2316config.detectorList[37].detectorType = 0 

2317 

2318# x offset from the origin of the camera in mm in the transposed system. 

2319config.detectorList[37].offset_x = 16.878 

2320 

2321# y offset from the origin of the camera in mm in the transposed system. 

2322config.detectorList[37].offset_y = 191.23 

2323 

2324# Transpose the pixel grid before orienting in focal plane? 

2325config.detectorList[37].transposeDetector = False 

2326 

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 

2331 

2332# roll (rotation about x) of the detector in degrees 

2333config.detectorList[37].rollDeg = 0.0 

2334 

2335# Serial string associated with this specific detector 

2336config.detectorList[37].serial = '38' 

2337 

2338# pitch (rotation about y) of the detector in degrees 

2339config.detectorList[37].pitchDeg = 0.0 

2340 

2341# ID of detector slot 

2342config.detectorList[37].id = 38 

2343 

2344config.detectorList[38] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

2345# y0 of pixel bounding box 

2346config.detectorList[38].bbox_y0 = 0 

2347 

2348# y1 of pixel bounding box 

2349config.detectorList[38].bbox_y1 = 4095 

2350 

2351# x1 of pixel bounding box 

2352config.detectorList[38].bbox_x1 = 2047 

2353 

2354# x0 of pixel bounding box 

2355config.detectorList[38].bbox_x0 = 0 

2356 

2357# Name of detector slot 

2358config.detectorList[38].name = 'N8' 

2359 

2360# Pixel size in the x dimension in mm 

2361config.detectorList[38].pixelSize_x = 0.015 

2362 

2363# Name of native coordinate system 

2364config.detectorList[38].transformDict.nativeSys = 'Pixels' 

2365 

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 

2369 

2370# y position of the reference point in the detector in pixels in transposed coordinates. 

2371config.detectorList[38].refpos_y = 2047.5 

2372 

2373# Pixel size in the y dimension in mm 

2374config.detectorList[38].pixelSize_y = 0.015 

2375 

2376# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

2377config.detectorList[38].detectorType = 0 

2378 

2379# x offset from the origin of the camera in mm in the transposed system. 

2380config.detectorList[38].offset_x = 50.662000000000006 

2381 

2382# y offset from the origin of the camera in mm in the transposed system. 

2383config.detectorList[38].offset_y = -159.379 

2384 

2385# Transpose the pixel grid before orienting in focal plane? 

2386config.detectorList[38].transposeDetector = False 

2387 

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 

2392 

2393# roll (rotation about x) of the detector in degrees 

2394config.detectorList[38].rollDeg = 0.0 

2395 

2396# Serial string associated with this specific detector 

2397config.detectorList[38].serial = '39' 

2398 

2399# pitch (rotation about y) of the detector in degrees 

2400config.detectorList[38].pitchDeg = 0.0 

2401 

2402# ID of detector slot 

2403config.detectorList[38].id = 39 

2404 

2405config.detectorList[39] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

2406# y0 of pixel bounding box 

2407config.detectorList[39].bbox_y0 = 0 

2408 

2409# y1 of pixel bounding box 

2410config.detectorList[39].bbox_y1 = 4095 

2411 

2412# x1 of pixel bounding box 

2413config.detectorList[39].bbox_x1 = 2047 

2414 

2415# x0 of pixel bounding box 

2416config.detectorList[39].bbox_x0 = 0 

2417 

2418# Name of detector slot 

2419config.detectorList[39].name = 'N9' 

2420 

2421# Pixel size in the x dimension in mm 

2422config.detectorList[39].pixelSize_x = 0.015 

2423 

2424# Name of native coordinate system 

2425config.detectorList[39].transformDict.nativeSys = 'Pixels' 

2426 

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 

2430 

2431# y position of the reference point in the detector in pixels in transposed coordinates. 

2432config.detectorList[39].refpos_y = 2047.5 

2433 

2434# Pixel size in the y dimension in mm 

2435config.detectorList[39].pixelSize_y = 0.015 

2436 

2437# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

2438config.detectorList[39].detectorType = 0 

2439 

2440# x offset from the origin of the camera in mm in the transposed system. 

2441config.detectorList[39].offset_x = 50.682 

2442 

2443# y offset from the origin of the camera in mm in the transposed system. 

2444config.detectorList[39].offset_y = -95.727 

2445 

2446# Transpose the pixel grid before orienting in focal plane? 

2447config.detectorList[39].transposeDetector = False 

2448 

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 

2453 

2454# roll (rotation about x) of the detector in degrees 

2455config.detectorList[39].rollDeg = 0.0 

2456 

2457# Serial string associated with this specific detector 

2458config.detectorList[39].serial = '40' 

2459 

2460# pitch (rotation about y) of the detector in degrees 

2461config.detectorList[39].pitchDeg = 0.0 

2462 

2463# ID of detector slot 

2464config.detectorList[39].id = 40 

2465 

2466config.detectorList[40] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

2467# y0 of pixel bounding box 

2468config.detectorList[40].bbox_y0 = 0 

2469 

2470# y1 of pixel bounding box 

2471config.detectorList[40].bbox_y1 = 4095 

2472 

2473# x1 of pixel bounding box 

2474config.detectorList[40].bbox_x1 = 2047 

2475 

2476# x0 of pixel bounding box 

2477config.detectorList[40].bbox_x0 = 0 

2478 

2479# Name of detector slot 

2480config.detectorList[40].name = 'N10' 

2481 

2482# Pixel size in the x dimension in mm 

2483config.detectorList[40].pixelSize_x = 0.015 

2484 

2485# Name of native coordinate system 

2486config.detectorList[40].transformDict.nativeSys = 'Pixels' 

2487 

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 

2491 

2492# y position of the reference point in the detector in pixels in transposed coordinates. 

2493config.detectorList[40].refpos_y = 2047.5 

2494 

2495# Pixel size in the y dimension in mm 

2496config.detectorList[40].pixelSize_y = 0.015 

2497 

2498# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

2499config.detectorList[40].detectorType = 0 

2500 

2501# x offset from the origin of the camera in mm in the transposed system. 

2502config.detectorList[40].offset_x = 50.664 

2503 

2504# y offset from the origin of the camera in mm in the transposed system. 

2505config.detectorList[40].offset_y = -31.911 

2506 

2507# Transpose the pixel grid before orienting in focal plane? 

2508config.detectorList[40].transposeDetector = False 

2509 

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 

2514 

2515# roll (rotation about x) of the detector in degrees 

2516config.detectorList[40].rollDeg = 0.0 

2517 

2518# Serial string associated with this specific detector 

2519config.detectorList[40].serial = '41' 

2520 

2521# pitch (rotation about y) of the detector in degrees 

2522config.detectorList[40].pitchDeg = 0.0 

2523 

2524# ID of detector slot 

2525config.detectorList[40].id = 41 

2526 

2527config.detectorList[41] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

2528# y0 of pixel bounding box 

2529config.detectorList[41].bbox_y0 = 0 

2530 

2531# y1 of pixel bounding box 

2532config.detectorList[41].bbox_y1 = 4095 

2533 

2534# x1 of pixel bounding box 

2535config.detectorList[41].bbox_x1 = 2047 

2536 

2537# x0 of pixel bounding box 

2538config.detectorList[41].bbox_x0 = 0 

2539 

2540# Name of detector slot 

2541config.detectorList[41].name = 'N11' 

2542 

2543# Pixel size in the x dimension in mm 

2544config.detectorList[41].pixelSize_x = 0.015 

2545 

2546# Name of native coordinate system 

2547config.detectorList[41].transformDict.nativeSys = 'Pixels' 

2548 

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 

2552 

2553# y position of the reference point in the detector in pixels in transposed coordinates. 

2554config.detectorList[41].refpos_y = 2047.5 

2555 

2556# Pixel size in the y dimension in mm 

2557config.detectorList[41].pixelSize_y = 0.015 

2558 

2559# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

2560config.detectorList[41].detectorType = 0 

2561 

2562# x offset from the origin of the camera in mm in the transposed system. 

2563config.detectorList[41].offset_x = 50.714 

2564 

2565# y offset from the origin of the camera in mm in the transposed system. 

2566config.detectorList[41].offset_y = 31.933 

2567 

2568# Transpose the pixel grid before orienting in focal plane? 

2569config.detectorList[41].transposeDetector = False 

2570 

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 

2575 

2576# roll (rotation about x) of the detector in degrees 

2577config.detectorList[41].rollDeg = 0.0 

2578 

2579# Serial string associated with this specific detector 

2580config.detectorList[41].serial = '42' 

2581 

2582# pitch (rotation about y) of the detector in degrees 

2583config.detectorList[41].pitchDeg = 0.0 

2584 

2585# ID of detector slot 

2586config.detectorList[41].id = 42 

2587 

2588config.detectorList[42] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

2589# y0 of pixel bounding box 

2590config.detectorList[42].bbox_y0 = 0 

2591 

2592# y1 of pixel bounding box 

2593config.detectorList[42].bbox_y1 = 4095 

2594 

2595# x1 of pixel bounding box 

2596config.detectorList[42].bbox_x1 = 2047 

2597 

2598# x0 of pixel bounding box 

2599config.detectorList[42].bbox_x0 = 0 

2600 

2601# Name of detector slot 

2602config.detectorList[42].name = 'N12' 

2603 

2604# Pixel size in the x dimension in mm 

2605config.detectorList[42].pixelSize_x = 0.015 

2606 

2607# Name of native coordinate system 

2608config.detectorList[42].transformDict.nativeSys = 'Pixels' 

2609 

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 

2613 

2614# y position of the reference point in the detector in pixels in transposed coordinates. 

2615config.detectorList[42].refpos_y = 2047.5 

2616 

2617# Pixel size in the y dimension in mm 

2618config.detectorList[42].pixelSize_y = 0.015 

2619 

2620# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

2621config.detectorList[42].detectorType = 0 

2622 

2623# x offset from the origin of the camera in mm in the transposed system. 

2624config.detectorList[42].offset_x = 50.678 

2625 

2626# y offset from the origin of the camera in mm in the transposed system. 

2627config.detectorList[42].offset_y = 95.689 

2628 

2629# Transpose the pixel grid before orienting in focal plane? 

2630config.detectorList[42].transposeDetector = False 

2631 

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 

2636 

2637# roll (rotation about x) of the detector in degrees 

2638config.detectorList[42].rollDeg = 0.0 

2639 

2640# Serial string associated with this specific detector 

2641config.detectorList[42].serial = '43' 

2642 

2643# pitch (rotation about y) of the detector in degrees 

2644config.detectorList[42].pitchDeg = 0.0 

2645 

2646# ID of detector slot 

2647config.detectorList[42].id = 43 

2648 

2649config.detectorList[43] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

2650# y0 of pixel bounding box 

2651config.detectorList[43].bbox_y0 = 0 

2652 

2653# y1 of pixel bounding box 

2654config.detectorList[43].bbox_y1 = 4095 

2655 

2656# x1 of pixel bounding box 

2657config.detectorList[43].bbox_x1 = 2047 

2658 

2659# x0 of pixel bounding box 

2660config.detectorList[43].bbox_x0 = 0 

2661 

2662# Name of detector slot 

2663config.detectorList[43].name = 'N13' 

2664 

2665# Pixel size in the x dimension in mm 

2666config.detectorList[43].pixelSize_x = 0.015 

2667 

2668# Name of native coordinate system 

2669config.detectorList[43].transformDict.nativeSys = 'Pixels' 

2670 

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 

2674 

2675# y position of the reference point in the detector in pixels in transposed coordinates. 

2676config.detectorList[43].refpos_y = 2047.5 

2677 

2678# Pixel size in the y dimension in mm 

2679config.detectorList[43].pixelSize_y = 0.015 

2680 

2681# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

2682config.detectorList[43].detectorType = 0 

2683 

2684# x offset from the origin of the camera in mm in the transposed system. 

2685config.detectorList[43].offset_x = 50.646 

2686 

2687# y offset from the origin of the camera in mm in the transposed system. 

2688config.detectorList[43].offset_y = 159.333 

2689 

2690# Transpose the pixel grid before orienting in focal plane? 

2691config.detectorList[43].transposeDetector = False 

2692 

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 

2697 

2698# roll (rotation about x) of the detector in degrees 

2699config.detectorList[43].rollDeg = 0.0 

2700 

2701# Serial string associated with this specific detector 

2702config.detectorList[43].serial = '44' 

2703 

2704# pitch (rotation about y) of the detector in degrees 

2705config.detectorList[43].pitchDeg = 0.0 

2706 

2707# ID of detector slot 

2708config.detectorList[43].id = 44 

2709 

2710config.detectorList[44] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

2711# y0 of pixel bounding box 

2712config.detectorList[44].bbox_y0 = 0 

2713 

2714# y1 of pixel bounding box 

2715config.detectorList[44].bbox_y1 = 4095 

2716 

2717# x1 of pixel bounding box 

2718config.detectorList[44].bbox_x1 = 2047 

2719 

2720# x0 of pixel bounding box 

2721config.detectorList[44].bbox_x0 = 0 

2722 

2723# Name of detector slot 

2724config.detectorList[44].name = 'N14' 

2725 

2726# Pixel size in the x dimension in mm 

2727config.detectorList[44].pixelSize_x = 0.015 

2728 

2729# Name of native coordinate system 

2730config.detectorList[44].transformDict.nativeSys = 'Pixels' 

2731 

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 

2735 

2736# y position of the reference point in the detector in pixels in transposed coordinates. 

2737config.detectorList[44].refpos_y = 2047.5 

2738 

2739# Pixel size in the y dimension in mm 

2740config.detectorList[44].pixelSize_y = 0.015 

2741 

2742# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

2743config.detectorList[44].detectorType = 0 

2744 

2745# x offset from the origin of the camera in mm in the transposed system. 

2746config.detectorList[44].offset_x = 84.352 

2747 

2748# y offset from the origin of the camera in mm in the transposed system. 

2749config.detectorList[44].offset_y = -159.393 

2750 

2751# Transpose the pixel grid before orienting in focal plane? 

2752config.detectorList[44].transposeDetector = False 

2753 

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 

2758 

2759# roll (rotation about x) of the detector in degrees 

2760config.detectorList[44].rollDeg = 0.0 

2761 

2762# Serial string associated with this specific detector 

2763config.detectorList[44].serial = '45' 

2764 

2765# pitch (rotation about y) of the detector in degrees 

2766config.detectorList[44].pitchDeg = 0.0 

2767 

2768# ID of detector slot 

2769config.detectorList[44].id = 45 

2770 

2771config.detectorList[45] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

2772# y0 of pixel bounding box 

2773config.detectorList[45].bbox_y0 = 0 

2774 

2775# y1 of pixel bounding box 

2776config.detectorList[45].bbox_y1 = 4095 

2777 

2778# x1 of pixel bounding box 

2779config.detectorList[45].bbox_x1 = 2047 

2780 

2781# x0 of pixel bounding box 

2782config.detectorList[45].bbox_x0 = 0 

2783 

2784# Name of detector slot 

2785config.detectorList[45].name = 'N15' 

2786 

2787# Pixel size in the x dimension in mm 

2788config.detectorList[45].pixelSize_x = 0.015 

2789 

2790# Name of native coordinate system 

2791config.detectorList[45].transformDict.nativeSys = 'Pixels' 

2792 

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 

2796 

2797# y position of the reference point in the detector in pixels in transposed coordinates. 

2798config.detectorList[45].refpos_y = 2047.5 

2799 

2800# Pixel size in the y dimension in mm 

2801config.detectorList[45].pixelSize_y = 0.015 

2802 

2803# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

2804config.detectorList[45].detectorType = 0 

2805 

2806# x offset from the origin of the camera in mm in the transposed system. 

2807config.detectorList[45].offset_x = 84.384 

2808 

2809# y offset from the origin of the camera in mm in the transposed system. 

2810config.detectorList[45].offset_y = -95.787 

2811 

2812# Transpose the pixel grid before orienting in focal plane? 

2813config.detectorList[45].transposeDetector = False 

2814 

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 

2819 

2820# roll (rotation about x) of the detector in degrees 

2821config.detectorList[45].rollDeg = 0.0 

2822 

2823# Serial string associated with this specific detector 

2824config.detectorList[45].serial = '46' 

2825 

2826# pitch (rotation about y) of the detector in degrees 

2827config.detectorList[45].pitchDeg = 0.0 

2828 

2829# ID of detector slot 

2830config.detectorList[45].id = 46 

2831 

2832config.detectorList[46] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

2833# y0 of pixel bounding box 

2834config.detectorList[46].bbox_y0 = 0 

2835 

2836# y1 of pixel bounding box 

2837config.detectorList[46].bbox_y1 = 4095 

2838 

2839# x1 of pixel bounding box 

2840config.detectorList[46].bbox_x1 = 2047 

2841 

2842# x0 of pixel bounding box 

2843config.detectorList[46].bbox_x0 = 0 

2844 

2845# Name of detector slot 

2846config.detectorList[46].name = 'N16' 

2847 

2848# Pixel size in the x dimension in mm 

2849config.detectorList[46].pixelSize_x = 0.015 

2850 

2851# Name of native coordinate system 

2852config.detectorList[46].transformDict.nativeSys = 'Pixels' 

2853 

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 

2857 

2858# y position of the reference point in the detector in pixels in transposed coordinates. 

2859config.detectorList[46].refpos_y = 2047.5 

2860 

2861# Pixel size in the y dimension in mm 

2862config.detectorList[46].pixelSize_y = 0.015 

2863 

2864# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

2865config.detectorList[46].detectorType = 0 

2866 

2867# x offset from the origin of the camera in mm in the transposed system. 

2868config.detectorList[46].offset_x = 84.412 

2869 

2870# y offset from the origin of the camera in mm in the transposed system. 

2871config.detectorList[46].offset_y = -31.899 

2872 

2873# Transpose the pixel grid before orienting in focal plane? 

2874config.detectorList[46].transposeDetector = False 

2875 

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 

2880 

2881# roll (rotation about x) of the detector in degrees 

2882config.detectorList[46].rollDeg = 0.0 

2883 

2884# Serial string associated with this specific detector 

2885config.detectorList[46].serial = '47' 

2886 

2887# pitch (rotation about y) of the detector in degrees 

2888config.detectorList[46].pitchDeg = 0.0 

2889 

2890# ID of detector slot 

2891config.detectorList[46].id = 47 

2892 

2893config.detectorList[47] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

2894# y0 of pixel bounding box 

2895config.detectorList[47].bbox_y0 = 0 

2896 

2897# y1 of pixel bounding box 

2898config.detectorList[47].bbox_y1 = 4095 

2899 

2900# x1 of pixel bounding box 

2901config.detectorList[47].bbox_x1 = 2047 

2902 

2903# x0 of pixel bounding box 

2904config.detectorList[47].bbox_x0 = 0 

2905 

2906# Name of detector slot 

2907config.detectorList[47].name = 'N17' 

2908 

2909# Pixel size in the x dimension in mm 

2910config.detectorList[47].pixelSize_x = 0.015 

2911 

2912# Name of native coordinate system 

2913config.detectorList[47].transformDict.nativeSys = 'Pixels' 

2914 

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 

2918 

2919# y position of the reference point in the detector in pixels in transposed coordinates. 

2920config.detectorList[47].refpos_y = 2047.5 

2921 

2922# Pixel size in the y dimension in mm 

2923config.detectorList[47].pixelSize_y = 0.015 

2924 

2925# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

2926config.detectorList[47].detectorType = 0 

2927 

2928# x offset from the origin of the camera in mm in the transposed system. 

2929config.detectorList[47].offset_x = 84.482 

2930 

2931# y offset from the origin of the camera in mm in the transposed system. 

2932config.detectorList[47].offset_y = 31.787 

2933 

2934# Transpose the pixel grid before orienting in focal plane? 

2935config.detectorList[47].transposeDetector = False 

2936 

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 

2941 

2942# roll (rotation about x) of the detector in degrees 

2943config.detectorList[47].rollDeg = 0.0 

2944 

2945# Serial string associated with this specific detector 

2946config.detectorList[47].serial = '48' 

2947 

2948# pitch (rotation about y) of the detector in degrees 

2949config.detectorList[47].pitchDeg = 0.0 

2950 

2951# ID of detector slot 

2952config.detectorList[47].id = 48 

2953 

2954config.detectorList[48] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

2955# y0 of pixel bounding box 

2956config.detectorList[48].bbox_y0 = 0 

2957 

2958# y1 of pixel bounding box 

2959config.detectorList[48].bbox_y1 = 4095 

2960 

2961# x1 of pixel bounding box 

2962config.detectorList[48].bbox_x1 = 2047 

2963 

2964# x0 of pixel bounding box 

2965config.detectorList[48].bbox_x0 = 0 

2966 

2967# Name of detector slot 

2968config.detectorList[48].name = 'N18' 

2969 

2970# Pixel size in the x dimension in mm 

2971config.detectorList[48].pixelSize_x = 0.015 

2972 

2973# Name of native coordinate system 

2974config.detectorList[48].transformDict.nativeSys = 'Pixels' 

2975 

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 

2979 

2980# y position of the reference point in the detector in pixels in transposed coordinates. 

2981config.detectorList[48].refpos_y = 2047.5 

2982 

2983# Pixel size in the y dimension in mm 

2984config.detectorList[48].pixelSize_y = 0.015 

2985 

2986# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

2987config.detectorList[48].detectorType = 0 

2988 

2989# x offset from the origin of the camera in mm in the transposed system. 

2990config.detectorList[48].offset_x = 84.388 

2991 

2992# y offset from the origin of the camera in mm in the transposed system. 

2993config.detectorList[48].offset_y = 95.663 

2994 

2995# Transpose the pixel grid before orienting in focal plane? 

2996config.detectorList[48].transposeDetector = False 

2997 

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 

3002 

3003# roll (rotation about x) of the detector in degrees 

3004config.detectorList[48].rollDeg = 0.0 

3005 

3006# Serial string associated with this specific detector 

3007config.detectorList[48].serial = '49' 

3008 

3009# pitch (rotation about y) of the detector in degrees 

3010config.detectorList[48].pitchDeg = 0.0 

3011 

3012# ID of detector slot 

3013config.detectorList[48].id = 49 

3014 

3015config.detectorList[49] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

3016# y0 of pixel bounding box 

3017config.detectorList[49].bbox_y0 = 0 

3018 

3019# y1 of pixel bounding box 

3020config.detectorList[49].bbox_y1 = 4095 

3021 

3022# x1 of pixel bounding box 

3023config.detectorList[49].bbox_x1 = 2047 

3024 

3025# x0 of pixel bounding box 

3026config.detectorList[49].bbox_x0 = 0 

3027 

3028# Name of detector slot 

3029config.detectorList[49].name = 'N19' 

3030 

3031# Pixel size in the x dimension in mm 

3032config.detectorList[49].pixelSize_x = 0.015 

3033 

3034# Name of native coordinate system 

3035config.detectorList[49].transformDict.nativeSys = 'Pixels' 

3036 

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 

3040 

3041# y position of the reference point in the detector in pixels in transposed coordinates. 

3042config.detectorList[49].refpos_y = 2047.5 

3043 

3044# Pixel size in the y dimension in mm 

3045config.detectorList[49].pixelSize_y = 0.015 

3046 

3047# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

3048config.detectorList[49].detectorType = 0 

3049 

3050# x offset from the origin of the camera in mm in the transposed system. 

3051config.detectorList[49].offset_x = 84.30799999999999 

3052 

3053# y offset from the origin of the camera in mm in the transposed system. 

3054config.detectorList[49].offset_y = 159.357 

3055 

3056# Transpose the pixel grid before orienting in focal plane? 

3057config.detectorList[49].transposeDetector = False 

3058 

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 

3063 

3064# roll (rotation about x) of the detector in degrees 

3065config.detectorList[49].rollDeg = 0.0 

3066 

3067# Serial string associated with this specific detector 

3068config.detectorList[49].serial = '50' 

3069 

3070# pitch (rotation about y) of the detector in degrees 

3071config.detectorList[49].pitchDeg = 0.0 

3072 

3073# ID of detector slot 

3074config.detectorList[49].id = 50 

3075 

3076config.detectorList[50] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

3077# y0 of pixel bounding box 

3078config.detectorList[50].bbox_y0 = 0 

3079 

3080# y1 of pixel bounding box 

3081config.detectorList[50].bbox_y1 = 4095 

3082 

3083# x1 of pixel bounding box 

3084config.detectorList[50].bbox_x1 = 2047 

3085 

3086# x0 of pixel bounding box 

3087config.detectorList[50].bbox_x0 = 0 

3088 

3089# Name of detector slot 

3090config.detectorList[50].name = 'N20' 

3091 

3092# Pixel size in the x dimension in mm 

3093config.detectorList[50].pixelSize_x = 0.015 

3094 

3095# Name of native coordinate system 

3096config.detectorList[50].transformDict.nativeSys = 'Pixels' 

3097 

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 

3101 

3102# y position of the reference point in the detector in pixels in transposed coordinates. 

3103config.detectorList[50].refpos_y = 2047.5 

3104 

3105# Pixel size in the y dimension in mm 

3106config.detectorList[50].pixelSize_y = 0.015 

3107 

3108# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

3109config.detectorList[50].detectorType = 0 

3110 

3111# x offset from the origin of the camera in mm in the transposed system. 

3112config.detectorList[50].offset_x = 118.086 

3113 

3114# y offset from the origin of the camera in mm in the transposed system. 

3115config.detectorList[50].offset_y = -127.458 

3116 

3117# Transpose the pixel grid before orienting in focal plane? 

3118config.detectorList[50].transposeDetector = False 

3119 

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 

3124 

3125# roll (rotation about x) of the detector in degrees 

3126config.detectorList[50].rollDeg = 0.0 

3127 

3128# Serial string associated with this specific detector 

3129config.detectorList[50].serial = '51' 

3130 

3131# pitch (rotation about y) of the detector in degrees 

3132config.detectorList[50].pitchDeg = 0.0 

3133 

3134# ID of detector slot 

3135config.detectorList[50].id = 51 

3136 

3137config.detectorList[51] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

3138# y0 of pixel bounding box 

3139config.detectorList[51].bbox_y0 = 0 

3140 

3141# y1 of pixel bounding box 

3142config.detectorList[51].bbox_y1 = 4095 

3143 

3144# x1 of pixel bounding box 

3145config.detectorList[51].bbox_x1 = 2047 

3146 

3147# x0 of pixel bounding box 

3148config.detectorList[51].bbox_x0 = 0 

3149 

3150# Name of detector slot 

3151config.detectorList[51].name = 'N21' 

3152 

3153# Pixel size in the x dimension in mm 

3154config.detectorList[51].pixelSize_x = 0.015 

3155 

3156# Name of native coordinate system 

3157config.detectorList[51].transformDict.nativeSys = 'Pixels' 

3158 

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 

3162 

3163# y position of the reference point in the detector in pixels in transposed coordinates. 

3164config.detectorList[51].refpos_y = 2047.5 

3165 

3166# Pixel size in the y dimension in mm 

3167config.detectorList[51].pixelSize_y = 0.015 

3168 

3169# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

3170config.detectorList[51].detectorType = 0 

3171 

3172# x offset from the origin of the camera in mm in the transposed system. 

3173config.detectorList[51].offset_x = 118.086 

3174 

3175# y offset from the origin of the camera in mm in the transposed system. 

3176config.detectorList[51].offset_y = -63.762 

3177 

3178# Transpose the pixel grid before orienting in focal plane? 

3179config.detectorList[51].transposeDetector = False 

3180 

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 

3185 

3186# roll (rotation about x) of the detector in degrees 

3187config.detectorList[51].rollDeg = 0.0 

3188 

3189# Serial string associated with this specific detector 

3190config.detectorList[51].serial = '52' 

3191 

3192# pitch (rotation about y) of the detector in degrees 

3193config.detectorList[51].pitchDeg = 0.0 

3194 

3195# ID of detector slot 

3196config.detectorList[51].id = 52 

3197 

3198config.detectorList[52] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

3199# y0 of pixel bounding box 

3200config.detectorList[52].bbox_y0 = 0 

3201 

3202# y1 of pixel bounding box 

3203config.detectorList[52].bbox_y1 = 4095 

3204 

3205# x1 of pixel bounding box 

3206config.detectorList[52].bbox_x1 = 2047 

3207 

3208# x0 of pixel bounding box 

3209config.detectorList[52].bbox_x0 = 0 

3210 

3211# Name of detector slot 

3212config.detectorList[52].name = 'N22' 

3213 

3214# Pixel size in the x dimension in mm 

3215config.detectorList[52].pixelSize_x = 0.015 

3216 

3217# Name of native coordinate system 

3218config.detectorList[52].transformDict.nativeSys = 'Pixels' 

3219 

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 

3223 

3224# y position of the reference point in the detector in pixels in transposed coordinates. 

3225config.detectorList[52].refpos_y = 2047.5 

3226 

3227# Pixel size in the y dimension in mm 

3228config.detectorList[52].pixelSize_y = 0.015 

3229 

3230# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

3231config.detectorList[52].detectorType = 0 

3232 

3233# x offset from the origin of the camera in mm in the transposed system. 

3234config.detectorList[52].offset_x = 118.09 

3235 

3236# y offset from the origin of the camera in mm in the transposed system. 

3237config.detectorList[52].offset_y = 0.049999999999998934 

3238 

3239# Transpose the pixel grid before orienting in focal plane? 

3240config.detectorList[52].transposeDetector = False 

3241 

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 

3246 

3247# roll (rotation about x) of the detector in degrees 

3248config.detectorList[52].rollDeg = 0.0 

3249 

3250# Serial string associated with this specific detector 

3251config.detectorList[52].serial = '53' 

3252 

3253# pitch (rotation about y) of the detector in degrees 

3254config.detectorList[52].pitchDeg = 0.0 

3255 

3256# ID of detector slot 

3257config.detectorList[52].id = 53 

3258 

3259config.detectorList[53] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

3260# y0 of pixel bounding box 

3261config.detectorList[53].bbox_y0 = 0 

3262 

3263# y1 of pixel bounding box 

3264config.detectorList[53].bbox_y1 = 4095 

3265 

3266# x1 of pixel bounding box 

3267config.detectorList[53].bbox_x1 = 2047 

3268 

3269# x0 of pixel bounding box 

3270config.detectorList[53].bbox_x0 = 0 

3271 

3272# Name of detector slot 

3273config.detectorList[53].name = 'N23' 

3274 

3275# Pixel size in the x dimension in mm 

3276config.detectorList[53].pixelSize_x = 0.015 

3277 

3278# Name of native coordinate system 

3279config.detectorList[53].transformDict.nativeSys = 'Pixels' 

3280 

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 

3284 

3285# y position of the reference point in the detector in pixels in transposed coordinates. 

3286config.detectorList[53].refpos_y = 2047.5 

3287 

3288# Pixel size in the y dimension in mm 

3289config.detectorList[53].pixelSize_y = 0.015 

3290 

3291# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

3292config.detectorList[53].detectorType = 0 

3293 

3294# x offset from the origin of the camera in mm in the transposed system. 

3295config.detectorList[53].offset_x = 118.166 

3296 

3297# y offset from the origin of the camera in mm in the transposed system. 

3298config.detectorList[53].offset_y = 63.754000000000005 

3299 

3300# Transpose the pixel grid before orienting in focal plane? 

3301config.detectorList[53].transposeDetector = False 

3302 

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 

3307 

3308# roll (rotation about x) of the detector in degrees 

3309config.detectorList[53].rollDeg = 0.0 

3310 

3311# Serial string associated with this specific detector 

3312config.detectorList[53].serial = '54' 

3313 

3314# pitch (rotation about y) of the detector in degrees 

3315config.detectorList[53].pitchDeg = 0.0 

3316 

3317# ID of detector slot 

3318config.detectorList[53].id = 54 

3319 

3320config.detectorList[54] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

3321# y0 of pixel bounding box 

3322config.detectorList[54].bbox_y0 = 0 

3323 

3324# y1 of pixel bounding box 

3325config.detectorList[54].bbox_y1 = 4095 

3326 

3327# x1 of pixel bounding box 

3328config.detectorList[54].bbox_x1 = 2047 

3329 

3330# x0 of pixel bounding box 

3331config.detectorList[54].bbox_x0 = 0 

3332 

3333# Name of detector slot 

3334config.detectorList[54].name = 'N24' 

3335 

3336# Pixel size in the x dimension in mm 

3337config.detectorList[54].pixelSize_x = 0.015 

3338 

3339# Name of native coordinate system 

3340config.detectorList[54].transformDict.nativeSys = 'Pixels' 

3341 

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 

3345 

3346# y position of the reference point in the detector in pixels in transposed coordinates. 

3347config.detectorList[54].refpos_y = 2047.5 

3348 

3349# Pixel size in the y dimension in mm 

3350config.detectorList[54].pixelSize_y = 0.015 

3351 

3352# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

3353config.detectorList[54].detectorType = 0 

3354 

3355# x offset from the origin of the camera in mm in the transposed system. 

3356config.detectorList[54].offset_x = 118.074 

3357 

3358# y offset from the origin of the camera in mm in the transposed system. 

3359config.detectorList[54].offset_y = 127.464 

3360 

3361# Transpose the pixel grid before orienting in focal plane? 

3362config.detectorList[54].transposeDetector = False 

3363 

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 

3368 

3369# roll (rotation about x) of the detector in degrees 

3370config.detectorList[54].rollDeg = 0.0 

3371 

3372# Serial string associated with this specific detector 

3373config.detectorList[54].serial = '55' 

3374 

3375# pitch (rotation about y) of the detector in degrees 

3376config.detectorList[54].pitchDeg = 0.0 

3377 

3378# ID of detector slot 

3379config.detectorList[54].id = 55 

3380 

3381config.detectorList[55] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

3382# y0 of pixel bounding box 

3383config.detectorList[55].bbox_y0 = 0 

3384 

3385# y1 of pixel bounding box 

3386config.detectorList[55].bbox_y1 = 4095 

3387 

3388# x1 of pixel bounding box 

3389config.detectorList[55].bbox_x1 = 2047 

3390 

3391# x0 of pixel bounding box 

3392config.detectorList[55].bbox_x0 = 0 

3393 

3394# Name of detector slot 

3395config.detectorList[55].name = 'N25' 

3396 

3397# Pixel size in the x dimension in mm 

3398config.detectorList[55].pixelSize_x = 0.015 

3399 

3400# Name of native coordinate system 

3401config.detectorList[55].transformDict.nativeSys = 'Pixels' 

3402 

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 

3406 

3407# y position of the reference point in the detector in pixels in transposed coordinates. 

3408config.detectorList[55].refpos_y = 2047.5 

3409 

3410# Pixel size in the y dimension in mm 

3411config.detectorList[55].pixelSize_y = 0.015 

3412 

3413# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

3414config.detectorList[55].detectorType = 0 

3415 

3416# x offset from the origin of the camera in mm in the transposed system. 

3417config.detectorList[55].offset_x = 151.808 

3418 

3419# y offset from the origin of the camera in mm in the transposed system. 

3420config.detectorList[55].offset_y = -95.587 

3421 

3422# Transpose the pixel grid before orienting in focal plane? 

3423config.detectorList[55].transposeDetector = False 

3424 

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 

3429 

3430# roll (rotation about x) of the detector in degrees 

3431config.detectorList[55].rollDeg = 0.0 

3432 

3433# Serial string associated with this specific detector 

3434config.detectorList[55].serial = '56' 

3435 

3436# pitch (rotation about y) of the detector in degrees 

3437config.detectorList[55].pitchDeg = 0.0 

3438 

3439# ID of detector slot 

3440config.detectorList[55].id = 56 

3441 

3442config.detectorList[56] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

3443# y0 of pixel bounding box 

3444config.detectorList[56].bbox_y0 = 0 

3445 

3446# y1 of pixel bounding box 

3447config.detectorList[56].bbox_y1 = 4095 

3448 

3449# x1 of pixel bounding box 

3450config.detectorList[56].bbox_x1 = 2047 

3451 

3452# x0 of pixel bounding box 

3453config.detectorList[56].bbox_x0 = 0 

3454 

3455# Name of detector slot 

3456config.detectorList[56].name = 'N26' 

3457 

3458# Pixel size in the x dimension in mm 

3459config.detectorList[56].pixelSize_x = 0.015 

3460 

3461# Name of native coordinate system 

3462config.detectorList[56].transformDict.nativeSys = 'Pixels' 

3463 

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 

3467 

3468# y position of the reference point in the detector in pixels in transposed coordinates. 

3469config.detectorList[56].refpos_y = 2047.5 

3470 

3471# Pixel size in the y dimension in mm 

3472config.detectorList[56].pixelSize_y = 0.015 

3473 

3474# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

3475config.detectorList[56].detectorType = 0 

3476 

3477# x offset from the origin of the camera in mm in the transposed system. 

3478config.detectorList[56].offset_x = 151.8 

3479 

3480# y offset from the origin of the camera in mm in the transposed system. 

3481config.detectorList[56].offset_y = -31.935000000000002 

3482 

3483# Transpose the pixel grid before orienting in focal plane? 

3484config.detectorList[56].transposeDetector = False 

3485 

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 

3490 

3491# roll (rotation about x) of the detector in degrees 

3492config.detectorList[56].rollDeg = 0.0 

3493 

3494# Serial string associated with this specific detector 

3495config.detectorList[56].serial = '57' 

3496 

3497# pitch (rotation about y) of the detector in degrees 

3498config.detectorList[56].pitchDeg = 0.0 

3499 

3500# ID of detector slot 

3501config.detectorList[56].id = 57 

3502 

3503config.detectorList[57] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

3504# y0 of pixel bounding box 

3505config.detectorList[57].bbox_y0 = 0 

3506 

3507# y1 of pixel bounding box 

3508config.detectorList[57].bbox_y1 = 4095 

3509 

3510# x1 of pixel bounding box 

3511config.detectorList[57].bbox_x1 = 2047 

3512 

3513# x0 of pixel bounding box 

3514config.detectorList[57].bbox_x0 = 0 

3515 

3516# Name of detector slot 

3517config.detectorList[57].name = 'N27' 

3518 

3519# Pixel size in the x dimension in mm 

3520config.detectorList[57].pixelSize_x = 0.015 

3521 

3522# Name of native coordinate system 

3523config.detectorList[57].transformDict.nativeSys = 'Pixels' 

3524 

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 

3528 

3529# y position of the reference point in the detector in pixels in transposed coordinates. 

3530config.detectorList[57].refpos_y = 2047.5 

3531 

3532# Pixel size in the y dimension in mm 

3533config.detectorList[57].pixelSize_y = 0.015 

3534 

3535# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

3536config.detectorList[57].detectorType = 0 

3537 

3538# x offset from the origin of the camera in mm in the transposed system. 

3539config.detectorList[57].offset_x = 151.86 

3540 

3541# y offset from the origin of the camera in mm in the transposed system. 

3542config.detectorList[57].offset_y = 31.847 

3543 

3544# Transpose the pixel grid before orienting in focal plane? 

3545config.detectorList[57].transposeDetector = False 

3546 

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 

3551 

3552# roll (rotation about x) of the detector in degrees 

3553config.detectorList[57].rollDeg = 0.0 

3554 

3555# Serial string associated with this specific detector 

3556config.detectorList[57].serial = '58' 

3557 

3558# pitch (rotation about y) of the detector in degrees 

3559config.detectorList[57].pitchDeg = 0.0 

3560 

3561# ID of detector slot 

3562config.detectorList[57].id = 58 

3563 

3564config.detectorList[58] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

3565# y0 of pixel bounding box 

3566config.detectorList[58].bbox_y0 = 0 

3567 

3568# y1 of pixel bounding box 

3569config.detectorList[58].bbox_y1 = 4095 

3570 

3571# x1 of pixel bounding box 

3572config.detectorList[58].bbox_x1 = 2047 

3573 

3574# x0 of pixel bounding box 

3575config.detectorList[58].bbox_x0 = 0 

3576 

3577# Name of detector slot 

3578config.detectorList[58].name = 'N28' 

3579 

3580# Pixel size in the x dimension in mm 

3581config.detectorList[58].pixelSize_x = 0.015 

3582 

3583# Name of native coordinate system 

3584config.detectorList[58].transformDict.nativeSys = 'Pixels' 

3585 

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 

3589 

3590# y position of the reference point in the detector in pixels in transposed coordinates. 

3591config.detectorList[58].refpos_y = 2047.5 

3592 

3593# Pixel size in the y dimension in mm 

3594config.detectorList[58].pixelSize_y = 0.015 

3595 

3596# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

3597config.detectorList[58].detectorType = 0 

3598 

3599# x offset from the origin of the camera in mm in the transposed system. 

3600config.detectorList[58].offset_x = 151.79399999999998 

3601 

3602# y offset from the origin of the camera in mm in the transposed system. 

3603config.detectorList[58].offset_y = 95.557 

3604 

3605# Transpose the pixel grid before orienting in focal plane? 

3606config.detectorList[58].transposeDetector = False 

3607 

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 

3612 

3613# roll (rotation about x) of the detector in degrees 

3614config.detectorList[58].rollDeg = 0.0 

3615 

3616# Serial string associated with this specific detector 

3617config.detectorList[58].serial = '59' 

3618 

3619# pitch (rotation about y) of the detector in degrees 

3620config.detectorList[58].pitchDeg = 0.0 

3621 

3622# ID of detector slot 

3623config.detectorList[58].id = 59 

3624 

3625config.detectorList[59] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

3626# y0 of pixel bounding box 

3627config.detectorList[59].bbox_y0 = 0 

3628 

3629# y1 of pixel bounding box 

3630config.detectorList[59].bbox_y1 = 4095 

3631 

3632# x1 of pixel bounding box 

3633config.detectorList[59].bbox_x1 = 2047 

3634 

3635# x0 of pixel bounding box 

3636config.detectorList[59].bbox_x0 = 0 

3637 

3638# Name of detector slot 

3639config.detectorList[59].name = 'N29' 

3640 

3641# Pixel size in the x dimension in mm 

3642config.detectorList[59].pixelSize_x = 0.015 

3643 

3644# Name of native coordinate system 

3645config.detectorList[59].transformDict.nativeSys = 'Pixels' 

3646 

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 

3650 

3651# y position of the reference point in the detector in pixels in transposed coordinates. 

3652config.detectorList[59].refpos_y = 2047.5 

3653 

3654# Pixel size in the y dimension in mm 

3655config.detectorList[59].pixelSize_y = 0.015 

3656 

3657# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

3658config.detectorList[59].detectorType = 0 

3659 

3660# x offset from the origin of the camera in mm in the transposed system. 

3661config.detectorList[59].offset_x = 185.558 

3662 

3663# y offset from the origin of the camera in mm in the transposed system. 

3664config.detectorList[59].offset_y = -63.732 

3665 

3666# Transpose the pixel grid before orienting in focal plane? 

3667config.detectorList[59].transposeDetector = False 

3668 

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 

3673 

3674# roll (rotation about x) of the detector in degrees 

3675config.detectorList[59].rollDeg = 0.0 

3676 

3677# Serial string associated with this specific detector 

3678config.detectorList[59].serial = '60' 

3679 

3680# pitch (rotation about y) of the detector in degrees 

3681config.detectorList[59].pitchDeg = 0.0 

3682 

3683# ID of detector slot 

3684config.detectorList[59].id = 60 

3685 

3686config.detectorList[60] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

3687# y0 of pixel bounding box 

3688config.detectorList[60].bbox_y0 = 0 

3689 

3690# y1 of pixel bounding box 

3691config.detectorList[60].bbox_y1 = 4095 

3692 

3693# x1 of pixel bounding box 

3694config.detectorList[60].bbox_x1 = 2047 

3695 

3696# x0 of pixel bounding box 

3697config.detectorList[60].bbox_x0 = 0 

3698 

3699# Name of detector slot 

3700config.detectorList[60].name = 'N30' 

3701 

3702# Pixel size in the x dimension in mm 

3703config.detectorList[60].pixelSize_x = 0.015 

3704 

3705# Name of native coordinate system 

3706config.detectorList[60].transformDict.nativeSys = 'Pixels' 

3707 

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 

3711 

3712# y position of the reference point in the detector in pixels in transposed coordinates. 

3713config.detectorList[60].refpos_y = 2047.5 

3714 

3715# Pixel size in the y dimension in mm 

3716config.detectorList[60].pixelSize_y = 0.015 

3717 

3718# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

3719config.detectorList[60].detectorType = 0 

3720 

3721# x offset from the origin of the camera in mm in the transposed system. 

3722config.detectorList[60].offset_x = 185.50400000000002 

3723 

3724# y offset from the origin of the camera in mm in the transposed system. 

3725config.detectorList[60].offset_y = 0.016000000000000014 

3726 

3727# Transpose the pixel grid before orienting in focal plane? 

3728config.detectorList[60].transposeDetector = False 

3729 

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 

3734 

3735# roll (rotation about x) of the detector in degrees 

3736config.detectorList[60].rollDeg = 0.0 

3737 

3738# Serial string associated with this specific detector 

3739config.detectorList[60].serial = '61' 

3740 

3741# pitch (rotation about y) of the detector in degrees 

3742config.detectorList[60].pitchDeg = 0.0 

3743 

3744# ID of detector slot 

3745config.detectorList[60].id = 61 

3746 

3747config.detectorList[61] = lsst.afw.cameraGeom.cameraConfig.DetectorConfig() 

3748# y0 of pixel bounding box 

3749config.detectorList[61].bbox_y0 = 0 

3750 

3751# y1 of pixel bounding box 

3752config.detectorList[61].bbox_y1 = 4095 

3753 

3754# x1 of pixel bounding box 

3755config.detectorList[61].bbox_x1 = 2047 

3756 

3757# x0 of pixel bounding box 

3758config.detectorList[61].bbox_x0 = 0 

3759 

3760# Name of detector slot 

3761config.detectorList[61].name = 'N31' 

3762 

3763# Pixel size in the x dimension in mm 

3764config.detectorList[61].pixelSize_x = 0.015 

3765 

3766# Name of native coordinate system 

3767config.detectorList[61].transformDict.nativeSys = 'Pixels' 

3768 

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 

3772 

3773# y position of the reference point in the detector in pixels in transposed coordinates. 

3774config.detectorList[61].refpos_y = 2047.5 

3775 

3776# Pixel size in the y dimension in mm 

3777config.detectorList[61].pixelSize_y = 0.015 

3778 

3779# Detector type: SCIENCE=0, FOCUS=1, GUIDER=2, WAVEFRONT=3 

3780config.detectorList[61].detectorType = 0 

3781 

3782# x offset from the origin of the camera in mm in the transposed system. 

3783config.detectorList[61].offset_x = 185.55 

3784 

3785# y offset from the origin of the camera in mm in the transposed system. 

3786config.detectorList[61].offset_y = 63.794 

3787 

3788# Transpose the pixel grid before orienting in focal plane? 

3789config.detectorList[61].transposeDetector = False 

3790 

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 

3795 

3796# roll (rotation about x) of the detector in degrees 

3797config.detectorList[61].rollDeg = 0.0 

3798 

3799# Serial string associated with this specific detector 

3800config.detectorList[61].serial = '62' 

3801 

3802# pitch (rotation about y) of the detector in degrees 

3803config.detectorList[61].pitchDeg = 0.0 

3804 

3805# ID of detector slot 

3806config.detectorList[61].id = 62 

3807 

3808# Coefficients for radial distortion 

3809config.radialCoeffs = None 

3810 

3811# Name of this camera 

3812config.name = 'DECam'