LSST Applications g070148d5b3+33e5256705,g0d53e28543+25c8b88941,g0da5cf3356+2dd1178308,g1081da9e2a+62d12e78cb,g17e5ecfddb+7e422d6136,g1c76d35bf8+ede3a706f7,g295839609d+225697d880,g2e2c1a68ba+cc1f6f037e,g2ffcdf413f+853cd4dcde,g38293774b4+62d12e78cb,g3b44f30a73+d953f1ac34,g48ccf36440+885b902d19,g4b2f1765b6+7dedbde6d2,g5320a0a9f6+0c5d6105b6,g56b687f8c9+ede3a706f7,g5c4744a4d9+ef6ac23297,g5ffd174ac0+0c5d6105b6,g6075d09f38+66af417445,g667d525e37+2ced63db88,g670421136f+2ced63db88,g71f27ac40c+2ced63db88,g774830318a+463cbe8d1f,g7876bc68e5+1d137996f1,g7985c39107+62d12e78cb,g7fdac2220c+0fd8241c05,g96f01af41f+368e6903a7,g9ca82378b8+2ced63db88,g9d27549199+ef6ac23297,gabe93b2c52+e3573e3735,gb065e2a02a+3dfbe639da,gbc3249ced9+0c5d6105b6,gbec6a3398f+0c5d6105b6,gc9534b9d65+35b9f25267,gd01420fc67+0c5d6105b6,geee7ff78d7+a14128c129,gf63283c776+ede3a706f7,gfed783d017+0c5d6105b6,w.2022.47
LSST Data Management Base Package
Loading...
Searching...
No Matches
Classes | Functions | Variables
lsstDebug Namespace Reference

Classes

class  Info
 

Functions

def getDebugFrame (debugDisplay, name)
 

Variables

 getInfo = Info
 

Function Documentation

◆ getDebugFrame()

def lsstDebug.getDebugFrame (   debugDisplay,
  name 
)
Attempt to extract a frame for displaying a product called ``name``
from the ``debugDisplay`` variable.

Per the above, an instance of `Info` can return an arbitrary object
(or nothing) as its ``display`` attribute. It is convenient -- though not
required -- that it be a dictionary mapping data products to frame
numbers, as shown in the `lsstDebug.Info` example. Given such a dictionary,
this function extracts and returns the appropriate frame number. If
``debugDisplay`` is not a collection, or if ``name`` is not found within
it, we return `None`.

Parameters
----------
debugDisplay : `object`
    The contents of ``lsstDebug.Info(__name__).display``.
name : `str`
    The name of the data product to be displayed.

Returns
-------
frame : `int`
    A frame number, or `None`.

Definition at line 95 of file lsstDebug.py.

95def getDebugFrame(debugDisplay, name):
96 """
97 Attempt to extract a frame for displaying a product called ``name``
98 from the ``debugDisplay`` variable.
99
100 Per the above, an instance of `Info` can return an arbitrary object
101 (or nothing) as its ``display`` attribute. It is convenient -- though not
102 required -- that it be a dictionary mapping data products to frame
103 numbers, as shown in the `lsstDebug.Info` example. Given such a dictionary,
104 this function extracts and returns the appropriate frame number. If
105 ``debugDisplay`` is not a collection, or if ``name`` is not found within
106 it, we return `None`.
107
108 Parameters
109 ----------
110 debugDisplay : `object`
111 The contents of ``lsstDebug.Info(__name__).display``.
112 name : `str`
113 The name of the data product to be displayed.
114
115 Returns
116 -------
117 frame : `int`
118 A frame number, or `None`.
119 """
120 if hasattr(debugDisplay, "__contains__") and name in debugDisplay:
121 return debugDisplay[name]
122 else:
123 return None

Variable Documentation

◆ getInfo

lsstDebug.getInfo = Info

Definition at line 92 of file lsstDebug.py.