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 = 16.5 

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 = None 

22 

23config.transformDict.transforms['FieldAngle'].transform['inverted'].transform.retarget(target=lsst.afw.geom.transformRegistry['radial']) 

24# Coefficients for the radial polynomial; coeff[0] must be 0 

25config.transformDict.transforms['FieldAngle'].transform['inverted'].transform.coeffs = [0.0, 12500.89734830887] 

26 

27config.transformDict.transforms['FieldAngle'].transform.name = 'inverted' 

28config.detectorList = {} 

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

30# y0 of pixel bounding box 

31config.detectorList[0].bbox_y0 = 0 

32 

33# y1 of pixel bounding box 

34config.detectorList[0].bbox_y1 = 1360 

35 

36# x1 of pixel bounding box 

37config.detectorList[0].bbox_x1 = 2047 

38 

39# x0 of pixel bounding box 

40config.detectorList[0].bbox_x0 = 0 

41 

42# Name of detector slot 

43config.detectorList[0].name = 'g1' 

44 

45# Pixel size in the x dimension in mm 

46config.detectorList[0].pixelSize_x = 0.024 

47 

48# Name of native coordinate system 

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

50 

51config.detectorList[0].transformDict.transforms = None 

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

53config.detectorList[0].refpos_x = 1023.5 

54 

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

56config.detectorList[0].refpos_y = 680.0 

57 

58# Pixel size in the y dimension in mm 

59config.detectorList[0].pixelSize_y = 0.024 

60 

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

62config.detectorList[0].detectorType = 0 

63 

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

65config.detectorList[0].offset_x = 158.75 

66 

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

68config.detectorList[0].offset_y = 106.67999999999999 

69 

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

71config.detectorList[0].transposeDetector = False 

72 

73# yaw (rotation about z) of the detector in degrees. This includes any 

74# necessary rotation to go from detector coordinates to camera coordinates 

75# after optional transposition. 

76config.detectorList[0].yawDeg = 0.0 

77 

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

79config.detectorList[0].rollDeg = 0.0 

80 

81# Serial string associated with this specific detector 

82config.detectorList[0].serial = 'g1' 

83 

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

85config.detectorList[0].pitchDeg = 0.0 

86 

87# ID of detector slot 

88config.detectorList[0].id = 0 

89 

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

91# y0 of pixel bounding box 

92config.detectorList[1].bbox_y0 = 0 

93 

94# y1 of pixel bounding box 

95config.detectorList[1].bbox_y1 = 1360 

96 

97# x1 of pixel bounding box 

98config.detectorList[1].bbox_x1 = 2047 

99 

100# x0 of pixel bounding box 

101config.detectorList[1].bbox_x0 = 0 

102 

103# Name of detector slot 

104config.detectorList[1].name = 'z1' 

105 

106# Pixel size in the x dimension in mm 

107config.detectorList[1].pixelSize_x = 0.024 

108 

109# Name of native coordinate system 

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

111 

112config.detectorList[1].transformDict.transforms = None 

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

114config.detectorList[1].refpos_x = 1023.5 

115 

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

117config.detectorList[1].refpos_y = 680.0 

118 

119# Pixel size in the y dimension in mm 

120config.detectorList[1].pixelSize_y = 0.024 

121 

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

123config.detectorList[1].detectorType = 0 

124 

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

126config.detectorList[1].offset_x = 158.75 

127 

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

129config.detectorList[1].offset_y = 53.339999999999996 

130 

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

132config.detectorList[1].transposeDetector = False 

133 

134# yaw (rotation about z) of the detector in degrees. This includes any 

135# necessary rotation to go from detector coordinates to camera coordinates 

136# after optional transposition. 

137config.detectorList[1].yawDeg = 0.0 

138 

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

140config.detectorList[1].rollDeg = 0.0 

141 

142# Serial string associated with this specific detector 

143config.detectorList[1].serial = 'z1' 

144 

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

146config.detectorList[1].pitchDeg = 0.0 

147 

148# ID of detector slot 

149config.detectorList[1].id = 1 

150 

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

152# y0 of pixel bounding box 

153config.detectorList[2].bbox_y0 = 0 

154 

155# y1 of pixel bounding box 

156config.detectorList[2].bbox_y1 = 1360 

157 

158# x1 of pixel bounding box 

159config.detectorList[2].bbox_x1 = 2047 

160 

161# x0 of pixel bounding box 

162config.detectorList[2].bbox_x0 = 0 

163 

164# Name of detector slot 

165config.detectorList[2].name = 'u1' 

166 

167# Pixel size in the x dimension in mm 

168config.detectorList[2].pixelSize_x = 0.024 

169 

170# Name of native coordinate system 

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

172 

173config.detectorList[2].transformDict.transforms = None 

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

175config.detectorList[2].refpos_x = 1023.5 

176 

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

178config.detectorList[2].refpos_y = 680.0 

179 

180# Pixel size in the y dimension in mm 

181config.detectorList[2].pixelSize_y = 0.024 

182 

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

184config.detectorList[2].detectorType = 0 

185 

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

187config.detectorList[2].offset_x = 158.75 

188 

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

190config.detectorList[2].offset_y = 0.0 

191 

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

193config.detectorList[2].transposeDetector = False 

194 

195# yaw (rotation about z) of the detector in degrees. This includes any 

196# necessary rotation to go from detector coordinates to camera coordinates 

197# after optional transposition. 

198config.detectorList[2].yawDeg = 0.0 

199 

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

201config.detectorList[2].rollDeg = 0.0 

202 

203# Serial string associated with this specific detector 

204config.detectorList[2].serial = 'u1' 

205 

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

207config.detectorList[2].pitchDeg = 0.0 

208 

209# ID of detector slot 

210config.detectorList[2].id = 2 

211 

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

213# y0 of pixel bounding box 

214config.detectorList[3].bbox_y0 = 0 

215 

216# y1 of pixel bounding box 

217config.detectorList[3].bbox_y1 = 1360 

218 

219# x1 of pixel bounding box 

220config.detectorList[3].bbox_x1 = 2047 

221 

222# x0 of pixel bounding box 

223config.detectorList[3].bbox_x0 = 0 

224 

225# Name of detector slot 

226config.detectorList[3].name = 'i1' 

227 

228# Pixel size in the x dimension in mm 

229config.detectorList[3].pixelSize_x = 0.024 

230 

231# Name of native coordinate system 

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

233 

234config.detectorList[3].transformDict.transforms = None 

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

236config.detectorList[3].refpos_x = 1023.5 

237 

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

239config.detectorList[3].refpos_y = 680.0 

240 

241# Pixel size in the y dimension in mm 

242config.detectorList[3].pixelSize_y = 0.024 

243 

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

245config.detectorList[3].detectorType = 0 

246 

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

248config.detectorList[3].offset_x = 158.75 

249 

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

251config.detectorList[3].offset_y = -53.339999999999996 

252 

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

254config.detectorList[3].transposeDetector = False 

255 

256# yaw (rotation about z) of the detector in degrees. This includes any 

257# necessary rotation to go from detector coordinates to camera coordinates 

258# after optional transposition. 

259config.detectorList[3].yawDeg = 0.0 

260 

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

262config.detectorList[3].rollDeg = 0.0 

263 

264# Serial string associated with this specific detector 

265config.detectorList[3].serial = 'i1' 

266 

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

268config.detectorList[3].pitchDeg = 0.0 

269 

270# ID of detector slot 

271config.detectorList[3].id = 3 

272 

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

274# y0 of pixel bounding box 

275config.detectorList[4].bbox_y0 = 0 

276 

277# y1 of pixel bounding box 

278config.detectorList[4].bbox_y1 = 1360 

279 

280# x1 of pixel bounding box 

281config.detectorList[4].bbox_x1 = 2047 

282 

283# x0 of pixel bounding box 

284config.detectorList[4].bbox_x0 = 0 

285 

286# Name of detector slot 

287config.detectorList[4].name = 'r1' 

288 

289# Pixel size in the x dimension in mm 

290config.detectorList[4].pixelSize_x = 0.024 

291 

292# Name of native coordinate system 

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

294 

295config.detectorList[4].transformDict.transforms = None 

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

297config.detectorList[4].refpos_x = 1023.5 

298 

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

300config.detectorList[4].refpos_y = 680.0 

301 

302# Pixel size in the y dimension in mm 

303config.detectorList[4].pixelSize_y = 0.024 

304 

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

306config.detectorList[4].detectorType = 0 

307 

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

309config.detectorList[4].offset_x = 158.75 

310 

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

312config.detectorList[4].offset_y = -106.67999999999999 

313 

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

315config.detectorList[4].transposeDetector = False 

316 

317# yaw (rotation about z) of the detector in degrees. This includes any 

318# necessary rotation to go from detector coordinates to camera coordinates 

319# after optional transposition. 

320config.detectorList[4].yawDeg = 0.0 

321 

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

323config.detectorList[4].rollDeg = 0.0 

324 

325# Serial string associated with this specific detector 

326config.detectorList[4].serial = 'r1' 

327 

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

329config.detectorList[4].pitchDeg = 0.0 

330 

331# ID of detector slot 

332config.detectorList[4].id = 4 

333 

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

335# y0 of pixel bounding box 

336config.detectorList[5].bbox_y0 = 0 

337 

338# y1 of pixel bounding box 

339config.detectorList[5].bbox_y1 = 1360 

340 

341# x1 of pixel bounding box 

342config.detectorList[5].bbox_x1 = 2047 

343 

344# x0 of pixel bounding box 

345config.detectorList[5].bbox_x0 = 0 

346 

347# Name of detector slot 

348config.detectorList[5].name = 'g2' 

349 

350# Pixel size in the x dimension in mm 

351config.detectorList[5].pixelSize_x = 0.024 

352 

353# Name of native coordinate system 

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

355 

356config.detectorList[5].transformDict.transforms = None 

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

358config.detectorList[5].refpos_x = 1023.5 

359 

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

361config.detectorList[5].refpos_y = 680.0 

362 

363# Pixel size in the y dimension in mm 

364config.detectorList[5].pixelSize_y = 0.024 

365 

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

367config.detectorList[5].detectorType = 0 

368 

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

370config.detectorList[5].offset_x = 95.25 

371 

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

373config.detectorList[5].offset_y = 106.67999999999999 

374 

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

376config.detectorList[5].transposeDetector = False 

377 

378# yaw (rotation about z) of the detector in degrees. This includes any 

379# necessary rotation to go from detector coordinates to camera coordinates 

380# after optional transposition. 

381config.detectorList[5].yawDeg = 0.0 

382 

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

384config.detectorList[5].rollDeg = 0.0 

385 

386# Serial string associated with this specific detector 

387config.detectorList[5].serial = 'g2' 

388 

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

390config.detectorList[5].pitchDeg = 0.0 

391 

392# ID of detector slot 

393config.detectorList[5].id = 5 

394 

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

396# y0 of pixel bounding box 

397config.detectorList[6].bbox_y0 = 0 

398 

399# y1 of pixel bounding box 

400config.detectorList[6].bbox_y1 = 1360 

401 

402# x1 of pixel bounding box 

403config.detectorList[6].bbox_x1 = 2047 

404 

405# x0 of pixel bounding box 

406config.detectorList[6].bbox_x0 = 0 

407 

408# Name of detector slot 

409config.detectorList[6].name = 'z2' 

410 

411# Pixel size in the x dimension in mm 

412config.detectorList[6].pixelSize_x = 0.024 

413 

414# Name of native coordinate system 

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

416 

417config.detectorList[6].transformDict.transforms = None 

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

419config.detectorList[6].refpos_x = 1023.5 

420 

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

422config.detectorList[6].refpos_y = 680.0 

423 

424# Pixel size in the y dimension in mm 

425config.detectorList[6].pixelSize_y = 0.024 

426 

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

428config.detectorList[6].detectorType = 0 

429 

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

431config.detectorList[6].offset_x = 95.25 

432 

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

434config.detectorList[6].offset_y = 53.339999999999996 

435 

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

437config.detectorList[6].transposeDetector = False 

438 

439# yaw (rotation about z) of the detector in degrees. This includes any 

440# necessary rotation to go from detector coordinates to camera coordinates 

441# after optional transposition. 

442config.detectorList[6].yawDeg = 0.0 

443 

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

445config.detectorList[6].rollDeg = 0.0 

446 

447# Serial string associated with this specific detector 

448config.detectorList[6].serial = 'z2' 

449 

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

451config.detectorList[6].pitchDeg = 0.0 

452 

453# ID of detector slot 

454config.detectorList[6].id = 6 

455 

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

457# y0 of pixel bounding box 

458config.detectorList[7].bbox_y0 = 0 

459 

460# y1 of pixel bounding box 

461config.detectorList[7].bbox_y1 = 1360 

462 

463# x1 of pixel bounding box 

464config.detectorList[7].bbox_x1 = 2047 

465 

466# x0 of pixel bounding box 

467config.detectorList[7].bbox_x0 = 0 

468 

469# Name of detector slot 

470config.detectorList[7].name = 'u2' 

471 

472# Pixel size in the x dimension in mm 

473config.detectorList[7].pixelSize_x = 0.024 

474 

475# Name of native coordinate system 

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

477 

478config.detectorList[7].transformDict.transforms = None 

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

480config.detectorList[7].refpos_x = 1023.5 

481 

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

483config.detectorList[7].refpos_y = 680.0 

484 

485# Pixel size in the y dimension in mm 

486config.detectorList[7].pixelSize_y = 0.024 

487 

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

489config.detectorList[7].detectorType = 0 

490 

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

492config.detectorList[7].offset_x = 95.25 

493 

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

495config.detectorList[7].offset_y = 0.0 

496 

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

498config.detectorList[7].transposeDetector = False 

499 

500# yaw (rotation about z) of the detector in degrees. This includes any 

501# necessary rotation to go from detector coordinates to camera coordinates 

502# after optional transposition. 

503config.detectorList[7].yawDeg = 0.0 

504 

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

506config.detectorList[7].rollDeg = 0.0 

507 

508# Serial string associated with this specific detector 

509config.detectorList[7].serial = 'u2' 

510 

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

512config.detectorList[7].pitchDeg = 0.0 

513 

514# ID of detector slot 

515config.detectorList[7].id = 7 

516 

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

518# y0 of pixel bounding box 

519config.detectorList[8].bbox_y0 = 0 

520 

521# y1 of pixel bounding box 

522config.detectorList[8].bbox_y1 = 1360 

523 

524# x1 of pixel bounding box 

525config.detectorList[8].bbox_x1 = 2047 

526 

527# x0 of pixel bounding box 

528config.detectorList[8].bbox_x0 = 0 

529 

530# Name of detector slot 

531config.detectorList[8].name = 'i2' 

532 

533# Pixel size in the x dimension in mm 

534config.detectorList[8].pixelSize_x = 0.024 

535 

536# Name of native coordinate system 

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

538 

539config.detectorList[8].transformDict.transforms = None 

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

541config.detectorList[8].refpos_x = 1023.5 

542 

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

544config.detectorList[8].refpos_y = 680.0 

545 

546# Pixel size in the y dimension in mm 

547config.detectorList[8].pixelSize_y = 0.024 

548 

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

550config.detectorList[8].detectorType = 0 

551 

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

553config.detectorList[8].offset_x = 95.25 

554 

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

556config.detectorList[8].offset_y = -53.339999999999996 

557 

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

559config.detectorList[8].transposeDetector = False 

560 

561# yaw (rotation about z) of the detector in degrees. This includes any 

562# necessary rotation to go from detector coordinates to camera coordinates 

563# after optional transposition. 

564config.detectorList[8].yawDeg = 0.0 

565 

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

567config.detectorList[8].rollDeg = 0.0 

568 

569# Serial string associated with this specific detector 

570config.detectorList[8].serial = 'i2' 

571 

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

573config.detectorList[8].pitchDeg = 0.0 

574 

575# ID of detector slot 

576config.detectorList[8].id = 8 

577 

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

579# y0 of pixel bounding box 

580config.detectorList[9].bbox_y0 = 0 

581 

582# y1 of pixel bounding box 

583config.detectorList[9].bbox_y1 = 1360 

584 

585# x1 of pixel bounding box 

586config.detectorList[9].bbox_x1 = 2047 

587 

588# x0 of pixel bounding box 

589config.detectorList[9].bbox_x0 = 0 

590 

591# Name of detector slot 

592config.detectorList[9].name = 'r2' 

593 

594# Pixel size in the x dimension in mm 

595config.detectorList[9].pixelSize_x = 0.024 

596 

597# Name of native coordinate system 

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

599 

600config.detectorList[9].transformDict.transforms = None 

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

602config.detectorList[9].refpos_x = 1023.5 

603 

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

605config.detectorList[9].refpos_y = 680.0 

606 

607# Pixel size in the y dimension in mm 

608config.detectorList[9].pixelSize_y = 0.024 

609 

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

611config.detectorList[9].detectorType = 0 

612 

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

614config.detectorList[9].offset_x = 95.25 

615 

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

617config.detectorList[9].offset_y = -106.67999999999999 

618 

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

620config.detectorList[9].transposeDetector = False 

621 

622# yaw (rotation about z) of the detector in degrees. This includes any 

623# necessary rotation to go from detector coordinates to camera coordinates 

624# after optional transposition. 

625config.detectorList[9].yawDeg = 0.0 

626 

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

628config.detectorList[9].rollDeg = 0.0 

629 

630# Serial string associated with this specific detector 

631config.detectorList[9].serial = 'r2' 

632 

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

634config.detectorList[9].pitchDeg = 0.0 

635 

636# ID of detector slot 

637config.detectorList[9].id = 9 

638 

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

640# y0 of pixel bounding box 

641config.detectorList[10].bbox_y0 = 0 

642 

643# y1 of pixel bounding box 

644config.detectorList[10].bbox_y1 = 1360 

645 

646# x1 of pixel bounding box 

647config.detectorList[10].bbox_x1 = 2047 

648 

649# x0 of pixel bounding box 

650config.detectorList[10].bbox_x0 = 0 

651 

652# Name of detector slot 

653config.detectorList[10].name = 'g3' 

654 

655# Pixel size in the x dimension in mm 

656config.detectorList[10].pixelSize_x = 0.024 

657 

658# Name of native coordinate system 

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

660 

661config.detectorList[10].transformDict.transforms = None 

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

663config.detectorList[10].refpos_x = 1023.5 

664 

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

666config.detectorList[10].refpos_y = 680.0 

667 

668# Pixel size in the y dimension in mm 

669config.detectorList[10].pixelSize_y = 0.024 

670 

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

672config.detectorList[10].detectorType = 0 

673 

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

675config.detectorList[10].offset_x = 31.75 

676 

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

678config.detectorList[10].offset_y = 106.67999999999999 

679 

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

681config.detectorList[10].transposeDetector = False 

682 

683# yaw (rotation about z) of the detector in degrees. This includes any 

684# necessary rotation to go from detector coordinates to camera coordinates 

685# after optional transposition. 

686config.detectorList[10].yawDeg = 0.0 

687 

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

689config.detectorList[10].rollDeg = 0.0 

690 

691# Serial string associated with this specific detector 

692config.detectorList[10].serial = 'g3' 

693 

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

695config.detectorList[10].pitchDeg = 0.0 

696 

697# ID of detector slot 

698config.detectorList[10].id = 10 

699 

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

701# y0 of pixel bounding box 

702config.detectorList[11].bbox_y0 = 0 

703 

704# y1 of pixel bounding box 

705config.detectorList[11].bbox_y1 = 1360 

706 

707# x1 of pixel bounding box 

708config.detectorList[11].bbox_x1 = 2047 

709 

710# x0 of pixel bounding box 

711config.detectorList[11].bbox_x0 = 0 

712 

713# Name of detector slot 

714config.detectorList[11].name = 'z3' 

715 

716# Pixel size in the x dimension in mm 

717config.detectorList[11].pixelSize_x = 0.024 

718 

719# Name of native coordinate system 

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

721 

722config.detectorList[11].transformDict.transforms = None 

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

724config.detectorList[11].refpos_x = 1023.5 

725 

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

727config.detectorList[11].refpos_y = 680.0 

728 

729# Pixel size in the y dimension in mm 

730config.detectorList[11].pixelSize_y = 0.024 

731 

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

733config.detectorList[11].detectorType = 0 

734 

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

736config.detectorList[11].offset_x = 31.75 

737 

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

739config.detectorList[11].offset_y = 53.339999999999996 

740 

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

742config.detectorList[11].transposeDetector = False 

743 

744# yaw (rotation about z) of the detector in degrees. This includes any 

745# necessary rotation to go from detector coordinates to camera coordinates 

746# after optional transposition. 

747config.detectorList[11].yawDeg = 0.0 

748 

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

750config.detectorList[11].rollDeg = 0.0 

751 

752# Serial string associated with this specific detector 

753config.detectorList[11].serial = 'z3' 

754 

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

756config.detectorList[11].pitchDeg = 0.0 

757 

758# ID of detector slot 

759config.detectorList[11].id = 11 

760 

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

762# y0 of pixel bounding box 

763config.detectorList[12].bbox_y0 = 0 

764 

765# y1 of pixel bounding box 

766config.detectorList[12].bbox_y1 = 1360 

767 

768# x1 of pixel bounding box 

769config.detectorList[12].bbox_x1 = 2047 

770 

771# x0 of pixel bounding box 

772config.detectorList[12].bbox_x0 = 0 

773 

774# Name of detector slot 

775config.detectorList[12].name = 'u3' 

776 

777# Pixel size in the x dimension in mm 

778config.detectorList[12].pixelSize_x = 0.024 

779 

780# Name of native coordinate system 

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

782 

783config.detectorList[12].transformDict.transforms = None 

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

785config.detectorList[12].refpos_x = 1023.5 

786 

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

788config.detectorList[12].refpos_y = 680.0 

789 

790# Pixel size in the y dimension in mm 

791config.detectorList[12].pixelSize_y = 0.024 

792 

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

794config.detectorList[12].detectorType = 0 

795 

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

797config.detectorList[12].offset_x = 31.75 

798 

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

800config.detectorList[12].offset_y = 0.0 

801 

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

803config.detectorList[12].transposeDetector = False 

804 

805# yaw (rotation about z) of the detector in degrees. This includes any 

806# necessary rotation to go from detector coordinates to camera coordinates 

807# after optional transposition. 

808config.detectorList[12].yawDeg = 0.0 

809 

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

811config.detectorList[12].rollDeg = 0.0 

812 

813# Serial string associated with this specific detector 

814config.detectorList[12].serial = 'u3' 

815 

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

817config.detectorList[12].pitchDeg = 0.0 

818 

819# ID of detector slot 

820config.detectorList[12].id = 12 

821 

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

823# y0 of pixel bounding box 

824config.detectorList[13].bbox_y0 = 0 

825 

826# y1 of pixel bounding box 

827config.detectorList[13].bbox_y1 = 1360 

828 

829# x1 of pixel bounding box 

830config.detectorList[13].bbox_x1 = 2047 

831 

832# x0 of pixel bounding box 

833config.detectorList[13].bbox_x0 = 0 

834 

835# Name of detector slot 

836config.detectorList[13].name = 'i3' 

837 

838# Pixel size in the x dimension in mm 

839config.detectorList[13].pixelSize_x = 0.024 

840 

841# Name of native coordinate system 

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

843 

844config.detectorList[13].transformDict.transforms = None 

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

846config.detectorList[13].refpos_x = 1023.5 

847 

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

849config.detectorList[13].refpos_y = 680.0 

850 

851# Pixel size in the y dimension in mm 

852config.detectorList[13].pixelSize_y = 0.024 

853 

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

855config.detectorList[13].detectorType = 0 

856 

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

858config.detectorList[13].offset_x = 31.75 

859 

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

861config.detectorList[13].offset_y = -53.339999999999996 

862 

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

864config.detectorList[13].transposeDetector = False 

865 

866# yaw (rotation about z) of the detector in degrees. This includes any 

867# necessary rotation to go from detector coordinates to camera coordinates 

868# after optional transposition. 

869config.detectorList[13].yawDeg = 0.0 

870 

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

872config.detectorList[13].rollDeg = 0.0 

873 

874# Serial string associated with this specific detector 

875config.detectorList[13].serial = 'i3' 

876 

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

878config.detectorList[13].pitchDeg = 0.0 

879 

880# ID of detector slot 

881config.detectorList[13].id = 13 

882 

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

884# y0 of pixel bounding box 

885config.detectorList[14].bbox_y0 = 0 

886 

887# y1 of pixel bounding box 

888config.detectorList[14].bbox_y1 = 1360 

889 

890# x1 of pixel bounding box 

891config.detectorList[14].bbox_x1 = 2047 

892 

893# x0 of pixel bounding box 

894config.detectorList[14].bbox_x0 = 0 

895 

896# Name of detector slot 

897config.detectorList[14].name = 'r3' 

898 

899# Pixel size in the x dimension in mm 

900config.detectorList[14].pixelSize_x = 0.024 

901 

902# Name of native coordinate system 

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

904 

905config.detectorList[14].transformDict.transforms = None 

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

907config.detectorList[14].refpos_x = 1023.5 

908 

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

910config.detectorList[14].refpos_y = 680.0 

911 

912# Pixel size in the y dimension in mm 

913config.detectorList[14].pixelSize_y = 0.024 

914 

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

916config.detectorList[14].detectorType = 0 

917 

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

919config.detectorList[14].offset_x = 31.75 

920 

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

922config.detectorList[14].offset_y = -106.67999999999999 

923 

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

925config.detectorList[14].transposeDetector = False 

926 

927# yaw (rotation about z) of the detector in degrees. This includes any 

928# necessary rotation to go from detector coordinates to camera coordinates 

929# after optional transposition. 

930config.detectorList[14].yawDeg = 0.0 

931 

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

933config.detectorList[14].rollDeg = 0.0 

934 

935# Serial string associated with this specific detector 

936config.detectorList[14].serial = 'r3' 

937 

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

939config.detectorList[14].pitchDeg = 0.0 

940 

941# ID of detector slot 

942config.detectorList[14].id = 14 

943 

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

945# y0 of pixel bounding box 

946config.detectorList[15].bbox_y0 = 0 

947 

948# y1 of pixel bounding box 

949config.detectorList[15].bbox_y1 = 1360 

950 

951# x1 of pixel bounding box 

952config.detectorList[15].bbox_x1 = 2047 

953 

954# x0 of pixel bounding box 

955config.detectorList[15].bbox_x0 = 0 

956 

957# Name of detector slot 

958config.detectorList[15].name = 'g4' 

959 

960# Pixel size in the x dimension in mm 

961config.detectorList[15].pixelSize_x = 0.024 

962 

963# Name of native coordinate system 

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

965 

966config.detectorList[15].transformDict.transforms = None 

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

968config.detectorList[15].refpos_x = 1023.5 

969 

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

971config.detectorList[15].refpos_y = 680.0 

972 

973# Pixel size in the y dimension in mm 

974config.detectorList[15].pixelSize_y = 0.024 

975 

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

977config.detectorList[15].detectorType = 0 

978 

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

980config.detectorList[15].offset_x = -31.75 

981 

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

983config.detectorList[15].offset_y = 106.67999999999999 

984 

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

986config.detectorList[15].transposeDetector = False 

987 

988# yaw (rotation about z) of the detector in degrees. This includes any 

989# necessary rotation to go from detector coordinates to camera coordinates 

990# after optional transposition. 

991config.detectorList[15].yawDeg = 0.0 

992 

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

994config.detectorList[15].rollDeg = 0.0 

995 

996# Serial string associated with this specific detector 

997config.detectorList[15].serial = 'g4' 

998 

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

1000config.detectorList[15].pitchDeg = 0.0 

1001 

1002# ID of detector slot 

1003config.detectorList[15].id = 15 

1004 

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

1006# y0 of pixel bounding box 

1007config.detectorList[16].bbox_y0 = 0 

1008 

1009# y1 of pixel bounding box 

1010config.detectorList[16].bbox_y1 = 1360 

1011 

1012# x1 of pixel bounding box 

1013config.detectorList[16].bbox_x1 = 2047 

1014 

1015# x0 of pixel bounding box 

1016config.detectorList[16].bbox_x0 = 0 

1017 

1018# Name of detector slot 

1019config.detectorList[16].name = 'z4' 

1020 

1021# Pixel size in the x dimension in mm 

1022config.detectorList[16].pixelSize_x = 0.024 

1023 

1024# Name of native coordinate system 

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

1026 

1027config.detectorList[16].transformDict.transforms = None 

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

1029config.detectorList[16].refpos_x = 1023.5 

1030 

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

1032config.detectorList[16].refpos_y = 680.0 

1033 

1034# Pixel size in the y dimension in mm 

1035config.detectorList[16].pixelSize_y = 0.024 

1036 

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

1038config.detectorList[16].detectorType = 0 

1039 

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

1041config.detectorList[16].offset_x = -31.75 

1042 

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

1044config.detectorList[16].offset_y = 53.339999999999996 

1045 

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

1047config.detectorList[16].transposeDetector = False 

1048 

1049# yaw (rotation about z) of the detector in degrees. This includes any 

1050# necessary rotation to go from detector coordinates to camera coordinates 

1051# after optional transposition. 

1052config.detectorList[16].yawDeg = 0.0 

1053 

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

1055config.detectorList[16].rollDeg = 0.0 

1056 

1057# Serial string associated with this specific detector 

1058config.detectorList[16].serial = 'z4' 

1059 

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

1061config.detectorList[16].pitchDeg = 0.0 

1062 

1063# ID of detector slot 

1064config.detectorList[16].id = 16 

1065 

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

1067# y0 of pixel bounding box 

1068config.detectorList[17].bbox_y0 = 0 

1069 

1070# y1 of pixel bounding box 

1071config.detectorList[17].bbox_y1 = 1360 

1072 

1073# x1 of pixel bounding box 

1074config.detectorList[17].bbox_x1 = 2047 

1075 

1076# x0 of pixel bounding box 

1077config.detectorList[17].bbox_x0 = 0 

1078 

1079# Name of detector slot 

1080config.detectorList[17].name = 'u4' 

1081 

1082# Pixel size in the x dimension in mm 

1083config.detectorList[17].pixelSize_x = 0.024 

1084 

1085# Name of native coordinate system 

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

1087 

1088config.detectorList[17].transformDict.transforms = None 

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

1090config.detectorList[17].refpos_x = 1023.5 

1091 

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

1093config.detectorList[17].refpos_y = 680.0 

1094 

1095# Pixel size in the y dimension in mm 

1096config.detectorList[17].pixelSize_y = 0.024 

1097 

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

1099config.detectorList[17].detectorType = 0 

1100 

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

1102config.detectorList[17].offset_x = -31.75 

1103 

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

1105config.detectorList[17].offset_y = 0.0 

1106 

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

1108config.detectorList[17].transposeDetector = False 

1109 

1110# yaw (rotation about z) of the detector in degrees. This includes any 

1111# necessary rotation to go from detector coordinates to camera coordinates 

1112# after optional transposition. 

1113config.detectorList[17].yawDeg = 0.0 

1114 

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

1116config.detectorList[17].rollDeg = 0.0 

1117 

1118# Serial string associated with this specific detector 

1119config.detectorList[17].serial = 'u4' 

1120 

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

1122config.detectorList[17].pitchDeg = 0.0 

1123 

1124# ID of detector slot 

1125config.detectorList[17].id = 17 

1126 

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

1128# y0 of pixel bounding box 

1129config.detectorList[18].bbox_y0 = 0 

1130 

1131# y1 of pixel bounding box 

1132config.detectorList[18].bbox_y1 = 1360 

1133 

1134# x1 of pixel bounding box 

1135config.detectorList[18].bbox_x1 = 2047 

1136 

1137# x0 of pixel bounding box 

1138config.detectorList[18].bbox_x0 = 0 

1139 

1140# Name of detector slot 

1141config.detectorList[18].name = 'i4' 

1142 

1143# Pixel size in the x dimension in mm 

1144config.detectorList[18].pixelSize_x = 0.024 

1145 

1146# Name of native coordinate system 

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

1148 

1149config.detectorList[18].transformDict.transforms = None 

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

1151config.detectorList[18].refpos_x = 1023.5 

1152 

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

1154config.detectorList[18].refpos_y = 680.0 

1155 

1156# Pixel size in the y dimension in mm 

1157config.detectorList[18].pixelSize_y = 0.024 

1158 

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

1160config.detectorList[18].detectorType = 0 

1161 

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

1163config.detectorList[18].offset_x = -31.75 

1164 

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

1166config.detectorList[18].offset_y = -53.339999999999996 

1167 

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

1169config.detectorList[18].transposeDetector = False 

1170 

1171# yaw (rotation about z) of the detector in degrees. This includes any 

1172# necessary rotation to go from detector coordinates to camera coordinates 

1173# after optional transposition. 

1174config.detectorList[18].yawDeg = 0.0 

1175 

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

1177config.detectorList[18].rollDeg = 0.0 

1178 

1179# Serial string associated with this specific detector 

1180config.detectorList[18].serial = 'i4' 

1181 

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

1183config.detectorList[18].pitchDeg = 0.0 

1184 

1185# ID of detector slot 

1186config.detectorList[18].id = 18 

1187 

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

1189# y0 of pixel bounding box 

1190config.detectorList[19].bbox_y0 = 0 

1191 

1192# y1 of pixel bounding box 

1193config.detectorList[19].bbox_y1 = 1360 

1194 

1195# x1 of pixel bounding box 

1196config.detectorList[19].bbox_x1 = 2047 

1197 

1198# x0 of pixel bounding box 

1199config.detectorList[19].bbox_x0 = 0 

1200 

1201# Name of detector slot 

1202config.detectorList[19].name = 'r4' 

1203 

1204# Pixel size in the x dimension in mm 

1205config.detectorList[19].pixelSize_x = 0.024 

1206 

1207# Name of native coordinate system 

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

1209 

1210config.detectorList[19].transformDict.transforms = None 

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

1212config.detectorList[19].refpos_x = 1023.5 

1213 

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

1215config.detectorList[19].refpos_y = 680.0 

1216 

1217# Pixel size in the y dimension in mm 

1218config.detectorList[19].pixelSize_y = 0.024 

1219 

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

1221config.detectorList[19].detectorType = 0 

1222 

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

1224config.detectorList[19].offset_x = -31.75 

1225 

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

1227config.detectorList[19].offset_y = -106.67999999999999 

1228 

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

1230config.detectorList[19].transposeDetector = False 

1231 

1232# yaw (rotation about z) of the detector in degrees. This includes any 

1233# necessary rotation to go from detector coordinates to camera coordinates 

1234# after optional transposition. 

1235config.detectorList[19].yawDeg = 0.0 

1236 

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

1238config.detectorList[19].rollDeg = 0.0 

1239 

1240# Serial string associated with this specific detector 

1241config.detectorList[19].serial = 'r4' 

1242 

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

1244config.detectorList[19].pitchDeg = 0.0 

1245 

1246# ID of detector slot 

1247config.detectorList[19].id = 19 

1248 

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

1250# y0 of pixel bounding box 

1251config.detectorList[20].bbox_y0 = 0 

1252 

1253# y1 of pixel bounding box 

1254config.detectorList[20].bbox_y1 = 1360 

1255 

1256# x1 of pixel bounding box 

1257config.detectorList[20].bbox_x1 = 2047 

1258 

1259# x0 of pixel bounding box 

1260config.detectorList[20].bbox_x0 = 0 

1261 

1262# Name of detector slot 

1263config.detectorList[20].name = 'g5' 

1264 

1265# Pixel size in the x dimension in mm 

1266config.detectorList[20].pixelSize_x = 0.024 

1267 

1268# Name of native coordinate system 

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

1270 

1271config.detectorList[20].transformDict.transforms = None 

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

1273config.detectorList[20].refpos_x = 1023.5 

1274 

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

1276config.detectorList[20].refpos_y = 680.0 

1277 

1278# Pixel size in the y dimension in mm 

1279config.detectorList[20].pixelSize_y = 0.024 

1280 

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

1282config.detectorList[20].detectorType = 0 

1283 

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

1285config.detectorList[20].offset_x = -95.25 

1286 

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

1288config.detectorList[20].offset_y = 106.67999999999999 

1289 

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

1291config.detectorList[20].transposeDetector = False 

1292 

1293# yaw (rotation about z) of the detector in degrees. This includes any 

1294# necessary rotation to go from detector coordinates to camera coordinates 

1295# after optional transposition. 

1296config.detectorList[20].yawDeg = 0.0 

1297 

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

1299config.detectorList[20].rollDeg = 0.0 

1300 

1301# Serial string associated with this specific detector 

1302config.detectorList[20].serial = 'g5' 

1303 

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

1305config.detectorList[20].pitchDeg = 0.0 

1306 

1307# ID of detector slot 

1308config.detectorList[20].id = 20 

1309 

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

1311# y0 of pixel bounding box 

1312config.detectorList[21].bbox_y0 = 0 

1313 

1314# y1 of pixel bounding box 

1315config.detectorList[21].bbox_y1 = 1360 

1316 

1317# x1 of pixel bounding box 

1318config.detectorList[21].bbox_x1 = 2047 

1319 

1320# x0 of pixel bounding box 

1321config.detectorList[21].bbox_x0 = 0 

1322 

1323# Name of detector slot 

1324config.detectorList[21].name = 'z5' 

1325 

1326# Pixel size in the x dimension in mm 

1327config.detectorList[21].pixelSize_x = 0.024 

1328 

1329# Name of native coordinate system 

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

1331 

1332config.detectorList[21].transformDict.transforms = None 

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

1334config.detectorList[21].refpos_x = 1023.5 

1335 

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

1337config.detectorList[21].refpos_y = 680.0 

1338 

1339# Pixel size in the y dimension in mm 

1340config.detectorList[21].pixelSize_y = 0.024 

1341 

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

1343config.detectorList[21].detectorType = 0 

1344 

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

1346config.detectorList[21].offset_x = -95.25 

1347 

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

1349config.detectorList[21].offset_y = 53.339999999999996 

1350 

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

1352config.detectorList[21].transposeDetector = False 

1353 

1354# yaw (rotation about z) of the detector in degrees. This includes any 

1355# necessary rotation to go from detector coordinates to camera coordinates 

1356# after optional transposition. 

1357config.detectorList[21].yawDeg = 0.0 

1358 

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

1360config.detectorList[21].rollDeg = 0.0 

1361 

1362# Serial string associated with this specific detector 

1363config.detectorList[21].serial = 'z5' 

1364 

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

1366config.detectorList[21].pitchDeg = 0.0 

1367 

1368# ID of detector slot 

1369config.detectorList[21].id = 21 

1370 

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

1372# y0 of pixel bounding box 

1373config.detectorList[22].bbox_y0 = 0 

1374 

1375# y1 of pixel bounding box 

1376config.detectorList[22].bbox_y1 = 1360 

1377 

1378# x1 of pixel bounding box 

1379config.detectorList[22].bbox_x1 = 2047 

1380 

1381# x0 of pixel bounding box 

1382config.detectorList[22].bbox_x0 = 0 

1383 

1384# Name of detector slot 

1385config.detectorList[22].name = 'u5' 

1386 

1387# Pixel size in the x dimension in mm 

1388config.detectorList[22].pixelSize_x = 0.024 

1389 

1390# Name of native coordinate system 

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

1392 

1393config.detectorList[22].transformDict.transforms = None 

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

1395config.detectorList[22].refpos_x = 1023.5 

1396 

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

1398config.detectorList[22].refpos_y = 680.0 

1399 

1400# Pixel size in the y dimension in mm 

1401config.detectorList[22].pixelSize_y = 0.024 

1402 

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

1404config.detectorList[22].detectorType = 0 

1405 

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

1407config.detectorList[22].offset_x = -95.25 

1408 

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

1410config.detectorList[22].offset_y = 0.0 

1411 

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

1413config.detectorList[22].transposeDetector = False 

1414 

1415# yaw (rotation about z) of the detector in degrees. This includes any 

1416# necessary rotation to go from detector coordinates to camera coordinates 

1417# after optional transposition. 

1418config.detectorList[22].yawDeg = 0.0 

1419 

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

1421config.detectorList[22].rollDeg = 0.0 

1422 

1423# Serial string associated with this specific detector 

1424config.detectorList[22].serial = 'u5' 

1425 

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

1427config.detectorList[22].pitchDeg = 0.0 

1428 

1429# ID of detector slot 

1430config.detectorList[22].id = 22 

1431 

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

1433# y0 of pixel bounding box 

1434config.detectorList[23].bbox_y0 = 0 

1435 

1436# y1 of pixel bounding box 

1437config.detectorList[23].bbox_y1 = 1360 

1438 

1439# x1 of pixel bounding box 

1440config.detectorList[23].bbox_x1 = 2047 

1441 

1442# x0 of pixel bounding box 

1443config.detectorList[23].bbox_x0 = 0 

1444 

1445# Name of detector slot 

1446config.detectorList[23].name = 'i5' 

1447 

1448# Pixel size in the x dimension in mm 

1449config.detectorList[23].pixelSize_x = 0.024 

1450 

1451# Name of native coordinate system 

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

1453 

1454config.detectorList[23].transformDict.transforms = None 

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

1456config.detectorList[23].refpos_x = 1023.5 

1457 

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

1459config.detectorList[23].refpos_y = 680.0 

1460 

1461# Pixel size in the y dimension in mm 

1462config.detectorList[23].pixelSize_y = 0.024 

1463 

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

1465config.detectorList[23].detectorType = 0 

1466 

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

1468config.detectorList[23].offset_x = -95.25 

1469 

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

1471config.detectorList[23].offset_y = -53.339999999999996 

1472 

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

1474config.detectorList[23].transposeDetector = False 

1475 

1476# yaw (rotation about z) of the detector in degrees. This includes any 

1477# necessary rotation to go from detector coordinates to camera coordinates 

1478# after optional transposition. 

1479config.detectorList[23].yawDeg = 0.0 

1480 

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

1482config.detectorList[23].rollDeg = 0.0 

1483 

1484# Serial string associated with this specific detector 

1485config.detectorList[23].serial = 'i5' 

1486 

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

1488config.detectorList[23].pitchDeg = 0.0 

1489 

1490# ID of detector slot 

1491config.detectorList[23].id = 23 

1492 

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

1494# y0 of pixel bounding box 

1495config.detectorList[24].bbox_y0 = 0 

1496 

1497# y1 of pixel bounding box 

1498config.detectorList[24].bbox_y1 = 1360 

1499 

1500# x1 of pixel bounding box 

1501config.detectorList[24].bbox_x1 = 2047 

1502 

1503# x0 of pixel bounding box 

1504config.detectorList[24].bbox_x0 = 0 

1505 

1506# Name of detector slot 

1507config.detectorList[24].name = 'r5' 

1508 

1509# Pixel size in the x dimension in mm 

1510config.detectorList[24].pixelSize_x = 0.024 

1511 

1512# Name of native coordinate system 

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

1514 

1515config.detectorList[24].transformDict.transforms = None 

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

1517config.detectorList[24].refpos_x = 1023.5 

1518 

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

1520config.detectorList[24].refpos_y = 680.0 

1521 

1522# Pixel size in the y dimension in mm 

1523config.detectorList[24].pixelSize_y = 0.024 

1524 

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

1526config.detectorList[24].detectorType = 0 

1527 

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

1529config.detectorList[24].offset_x = -95.25 

1530 

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

1532config.detectorList[24].offset_y = -106.67999999999999 

1533 

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

1535config.detectorList[24].transposeDetector = False 

1536 

1537# yaw (rotation about z) of the detector in degrees. This includes any 

1538# necessary rotation to go from detector coordinates to camera coordinates 

1539# after optional transposition. 

1540config.detectorList[24].yawDeg = 0.0 

1541 

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

1543config.detectorList[24].rollDeg = 0.0 

1544 

1545# Serial string associated with this specific detector 

1546config.detectorList[24].serial = 'r5' 

1547 

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

1549config.detectorList[24].pitchDeg = 0.0 

1550 

1551# ID of detector slot 

1552config.detectorList[24].id = 24 

1553 

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

1555# y0 of pixel bounding box 

1556config.detectorList[25].bbox_y0 = 0 

1557 

1558# y1 of pixel bounding box 

1559config.detectorList[25].bbox_y1 = 1360 

1560 

1561# x1 of pixel bounding box 

1562config.detectorList[25].bbox_x1 = 2047 

1563 

1564# x0 of pixel bounding box 

1565config.detectorList[25].bbox_x0 = 0 

1566 

1567# Name of detector slot 

1568config.detectorList[25].name = 'g6' 

1569 

1570# Pixel size in the x dimension in mm 

1571config.detectorList[25].pixelSize_x = 0.024 

1572 

1573# Name of native coordinate system 

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

1575 

1576config.detectorList[25].transformDict.transforms = None 

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

1578config.detectorList[25].refpos_x = 1023.5 

1579 

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

1581config.detectorList[25].refpos_y = 680.0 

1582 

1583# Pixel size in the y dimension in mm 

1584config.detectorList[25].pixelSize_y = 0.024 

1585 

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

1587config.detectorList[25].detectorType = 0 

1588 

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

1590config.detectorList[25].offset_x = -158.75 

1591 

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

1593config.detectorList[25].offset_y = 106.67999999999999 

1594 

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

1596config.detectorList[25].transposeDetector = False 

1597 

1598# yaw (rotation about z) of the detector in degrees. This includes any 

1599# necessary rotation to go from detector coordinates to camera coordinates 

1600# after optional transposition. 

1601config.detectorList[25].yawDeg = 0.0 

1602 

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

1604config.detectorList[25].rollDeg = 0.0 

1605 

1606# Serial string associated with this specific detector 

1607config.detectorList[25].serial = 'g6' 

1608 

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

1610config.detectorList[25].pitchDeg = 0.0 

1611 

1612# ID of detector slot 

1613config.detectorList[25].id = 25 

1614 

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

1616# y0 of pixel bounding box 

1617config.detectorList[26].bbox_y0 = 0 

1618 

1619# y1 of pixel bounding box 

1620config.detectorList[26].bbox_y1 = 1360 

1621 

1622# x1 of pixel bounding box 

1623config.detectorList[26].bbox_x1 = 2047 

1624 

1625# x0 of pixel bounding box 

1626config.detectorList[26].bbox_x0 = 0 

1627 

1628# Name of detector slot 

1629config.detectorList[26].name = 'z6' 

1630 

1631# Pixel size in the x dimension in mm 

1632config.detectorList[26].pixelSize_x = 0.024 

1633 

1634# Name of native coordinate system 

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

1636 

1637config.detectorList[26].transformDict.transforms = None 

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

1639config.detectorList[26].refpos_x = 1023.5 

1640 

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

1642config.detectorList[26].refpos_y = 680.0 

1643 

1644# Pixel size in the y dimension in mm 

1645config.detectorList[26].pixelSize_y = 0.024 

1646 

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

1648config.detectorList[26].detectorType = 0 

1649 

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

1651config.detectorList[26].offset_x = -158.75 

1652 

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

1654config.detectorList[26].offset_y = 53.339999999999996 

1655 

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

1657config.detectorList[26].transposeDetector = False 

1658 

1659# yaw (rotation about z) of the detector in degrees. This includes any 

1660# necessary rotation to go from detector coordinates to camera coordinates 

1661# after optional transposition. 

1662config.detectorList[26].yawDeg = 0.0 

1663 

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

1665config.detectorList[26].rollDeg = 0.0 

1666 

1667# Serial string associated with this specific detector 

1668config.detectorList[26].serial = 'z6' 

1669 

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

1671config.detectorList[26].pitchDeg = 0.0 

1672 

1673# ID of detector slot 

1674config.detectorList[26].id = 26 

1675 

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

1677# y0 of pixel bounding box 

1678config.detectorList[27].bbox_y0 = 0 

1679 

1680# y1 of pixel bounding box 

1681config.detectorList[27].bbox_y1 = 1360 

1682 

1683# x1 of pixel bounding box 

1684config.detectorList[27].bbox_x1 = 2047 

1685 

1686# x0 of pixel bounding box 

1687config.detectorList[27].bbox_x0 = 0 

1688 

1689# Name of detector slot 

1690config.detectorList[27].name = 'u6' 

1691 

1692# Pixel size in the x dimension in mm 

1693config.detectorList[27].pixelSize_x = 0.024 

1694 

1695# Name of native coordinate system 

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

1697 

1698config.detectorList[27].transformDict.transforms = None 

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

1700config.detectorList[27].refpos_x = 1023.5 

1701 

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

1703config.detectorList[27].refpos_y = 680.0 

1704 

1705# Pixel size in the y dimension in mm 

1706config.detectorList[27].pixelSize_y = 0.024 

1707 

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

1709config.detectorList[27].detectorType = 0 

1710 

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

1712config.detectorList[27].offset_x = -158.75 

1713 

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

1715config.detectorList[27].offset_y = 0.0 

1716 

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

1718config.detectorList[27].transposeDetector = False 

1719 

1720# yaw (rotation about z) of the detector in degrees. This includes any 

1721# necessary rotation to go from detector coordinates to camera coordinates 

1722# after optional transposition. 

1723config.detectorList[27].yawDeg = 0.0 

1724 

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

1726config.detectorList[27].rollDeg = 0.0 

1727 

1728# Serial string associated with this specific detector 

1729config.detectorList[27].serial = 'u6' 

1730 

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

1732config.detectorList[27].pitchDeg = 0.0 

1733 

1734# ID of detector slot 

1735config.detectorList[27].id = 27 

1736 

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

1738# y0 of pixel bounding box 

1739config.detectorList[28].bbox_y0 = 0 

1740 

1741# y1 of pixel bounding box 

1742config.detectorList[28].bbox_y1 = 1360 

1743 

1744# x1 of pixel bounding box 

1745config.detectorList[28].bbox_x1 = 2047 

1746 

1747# x0 of pixel bounding box 

1748config.detectorList[28].bbox_x0 = 0 

1749 

1750# Name of detector slot 

1751config.detectorList[28].name = 'i6' 

1752 

1753# Pixel size in the x dimension in mm 

1754config.detectorList[28].pixelSize_x = 0.024 

1755 

1756# Name of native coordinate system 

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

1758 

1759config.detectorList[28].transformDict.transforms = None 

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

1761config.detectorList[28].refpos_x = 1023.5 

1762 

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

1764config.detectorList[28].refpos_y = 680.0 

1765 

1766# Pixel size in the y dimension in mm 

1767config.detectorList[28].pixelSize_y = 0.024 

1768 

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

1770config.detectorList[28].detectorType = 0 

1771 

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

1773config.detectorList[28].offset_x = -158.75 

1774 

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

1776config.detectorList[28].offset_y = -53.339999999999996 

1777 

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

1779config.detectorList[28].transposeDetector = False 

1780 

1781# yaw (rotation about z) of the detector in degrees. This includes any 

1782# necessary rotation to go from detector coordinates to camera coordinates 

1783# after optional transposition. 

1784config.detectorList[28].yawDeg = 0.0 

1785 

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

1787config.detectorList[28].rollDeg = 0.0 

1788 

1789# Serial string associated with this specific detector 

1790config.detectorList[28].serial = 'i6' 

1791 

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

1793config.detectorList[28].pitchDeg = 0.0 

1794 

1795# ID of detector slot 

1796config.detectorList[28].id = 28 

1797 

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

1799# y0 of pixel bounding box 

1800config.detectorList[29].bbox_y0 = 0 

1801 

1802# y1 of pixel bounding box 

1803config.detectorList[29].bbox_y1 = 1360 

1804 

1805# x1 of pixel bounding box 

1806config.detectorList[29].bbox_x1 = 2047 

1807 

1808# x0 of pixel bounding box 

1809config.detectorList[29].bbox_x0 = 0 

1810 

1811# Name of detector slot 

1812config.detectorList[29].name = 'r6' 

1813 

1814# Pixel size in the x dimension in mm 

1815config.detectorList[29].pixelSize_x = 0.024 

1816 

1817# Name of native coordinate system 

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

1819 

1820config.detectorList[29].transformDict.transforms = None 

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

1822config.detectorList[29].refpos_x = 1023.5 

1823 

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

1825config.detectorList[29].refpos_y = 680.0 

1826 

1827# Pixel size in the y dimension in mm 

1828config.detectorList[29].pixelSize_y = 0.024 

1829 

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

1831config.detectorList[29].detectorType = 0 

1832 

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

1834config.detectorList[29].offset_x = -158.75 

1835 

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

1837config.detectorList[29].offset_y = -106.67999999999999 

1838 

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

1840config.detectorList[29].transposeDetector = False 

1841 

1842# yaw (rotation about z) of the detector in degrees. This includes any 

1843# necessary rotation to go from detector coordinates to camera coordinates 

1844# after optional transposition. 

1845config.detectorList[29].yawDeg = 0.0 

1846 

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

1848config.detectorList[29].rollDeg = 0.0 

1849 

1850# Serial string associated with this specific detector 

1851config.detectorList[29].serial = 'r6' 

1852 

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

1854config.detectorList[29].pitchDeg = 0.0 

1855 

1856# ID of detector slot 

1857config.detectorList[29].id = 29 

1858 

1859# Coefficients for radial distortion 

1860config.radialCoeffs = None 

1861 

1862# Name of this camera 

1863config.name = 'SDSS'