LSSTApplications  20.0.0
LSSTDataManagementBasePackage
Classes | Functions | Variables
lsst.ip.diffim.modelPsfMatch Namespace Reference

Classes

class  ModelPsfMatchConfig
 
class  ModelPsfMatchTask
 

Functions

def nextOddInteger (x)
 

Variables

int sigma2fwhm = 2.*np.sqrt(2.*np.log(2.))
 

Function Documentation

◆ nextOddInteger()

def lsst.ip.diffim.modelPsfMatch.nextOddInteger (   x)

Definition at line 41 of file modelPsfMatch.py.

41 def nextOddInteger(x):
42  nextInt = int(np.ceil(x))
43  return nextInt + 1 if nextInt%2 == 0 else nextInt
44 
45 

Variable Documentation

◆ sigma2fwhm

int lsst.ip.diffim.modelPsfMatch.sigma2fwhm = 2.*np.sqrt(2.*np.log(2.))

Definition at line 38 of file modelPsfMatch.py.

lsst::ip::diffim.modelPsfMatch.nextOddInteger
def nextOddInteger(x)
Definition: modelPsfMatch.py:41