LSSTApplications  19.0.0-1-g1faeb96,19.0.0-1-g8c57eb9+33,19.0.0-1-ga3b31f8+2,19.0.0-1-gad49e94,19.0.0-14-g7511ce4+10,19.0.0-17-gde1f5b76+2,19.0.0-18-gfb21c91+1,19.0.0-19-gb85e94b+1,19.0.0-19-gda55c62e5,19.0.0-2-g15ad1b6+1,19.0.0-2-g2ed0b45,19.0.0-2-g456d77f+2,19.0.0-2-g4aada73,19.0.0-2-g5e94dc7,19.0.0-2-g6e0b8f9,19.0.0-2-g822544a+1,19.0.0-2-gb013ac2+1,19.0.0-2-gd82b0d5+2,19.0.0-20-g3336a1e+2,19.0.0-22-g08d7e7a+2,19.0.0-22-ge8ce431+1,19.0.0-3-g57fcecc+1,19.0.0-3-g9629746,19.0.0-3-g99a058e,19.0.0-3-ga84a0ef,19.0.0-3-gbea416a,19.0.0-3-gc2296d9,19.0.0-3-gc70e9ed,19.0.0-3-gc851abf+2,19.0.0-4-gac56cce+21,19.0.0-4-gb666382+2,19.0.0-4-gc799371+2,19.0.0-5-g24a5ec6,19.0.0-51-gb87bce2+1,19.0.0-54-g1bde8684,19.0.0-6-g4aaee92+2,19.0.0-6-gce3e386+2,19.0.0-8-g967c747,19.0.0-8-gb750100+1,19.0.0-9-g98aad11,w.2020.17
LSSTDataManagementBasePackage
Public Member Functions | List of all members
lsst.afw.math.background.backgroundContinued.BackgroundControl Class Reference

Public Member Functions

def __init__ (self, *args, **kwargs)
 

Detailed Description

Definition at line 33 of file backgroundContinued.py.

Constructor & Destructor Documentation

◆ __init__()

def lsst.afw.math.background.backgroundContinued.BackgroundControl.__init__ (   self,
args,
**  kwargs 
)

Definition at line 36 of file backgroundContinued.py.

36  def __init__(self, *args, **kwargs):
37  # This constructor called dozens of times; warn only for invalid use
38  if (args and (isinstance(args[0], str) or isinstance(args[0], Interpolate.Style))) \
39  or "style" in kwargs:
40  warnings.warn('Call to deprecated method __init__. (Overloads that take a ``style`` parameter '
41  'are deprecated; the style must be passed to `Background.getImageF` instead. '
42  'To be removed after 20.0.0.)',
43  FutureWarning, stacklevel=2)
44  self._init(*args, **kwargs)
45 
46 
47 @continueClass # noqa: F811

The documentation for this class was generated from the following file: