SimulatedModel#
- class lsst.ip.isr.SimulatedModel#
Bases:
OverscanModelSimulated overscan model.
Methods Summary
model_results(params, signal, num_transfers, amp)Generate a realization of the overscan model, using the specified fit parameters and input signal.
Methods Documentation
- static model_results(params, signal, num_transfers, amp, start=1, stop=10, trap_type=None)#
Generate a realization of the overscan model, using the specified fit parameters and input signal.
Parameters#
- params
lmfit.Parameters Object containing the model parameters.
- signal
np.ndarray, (nMeasurements) Array of image means.
- num_transfers
int Number of serial transfers that the charge undergoes.
- amp
lsst.afw.cameraGeom.Amplifier Amplifier to use for geometry information.
- start
int, optional First overscan column to fit. This number includes the last imaging column, and needs to be adjusted by one when using the overscan bounding box.
- stop
int, optional Last overscan column to fit. This number includes the last imaging column, and needs to be adjusted by one when using the overscan bounding box.
- trap_type
str, optional Type of trap model to use.
Returns#
- results
np.ndarray, (nMeasurements, nCols) Model results.
- params