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

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

from lsst.obs.lsstSim import LsstSimMapper 

import lsst.log as lsstLog 

 

 

__all__ = ["lsst_camera"] 

 

 

def lsst_camera(): 

""" 

Return a copy of the LSST Camera model as stored in obs_lsstSim. 

""" 

if not hasattr(lsst_camera, '_lsst_camera'): 

lsstLog.setLevel('CameraMapper', lsstLog.WARN) 

lsst_camera._lsst_camera = LsstSimMapper().camera 

 

return lsst_camera._lsst_camera