LSSTApplications  20.0.0
LSSTDataManagementBasePackage
randomStarFakes.py
Go to the documentation of this file.
1 import numpy as np
2 
3 import lsst.afw.image
4 import lsst.afw.geom
5 import lsst.afw.math
6 import lsst.pex.config
7 from lsst.pipe.tasks.fakes import BaseFakeSourcesConfig, BaseFakeSourcesTask
8 
9 
11  nStars = lsst.pex.config.Field(dtype=int, default=1,
12  doc="Number of stars to add")
13  magnitude = lsst.pex.config.Field(dtype=float, default=20.0,
14  doc="Magnitude of all stars to be added")
15  margin = lsst.pex.config.Field(dtype=int, default=None, optional=True,
16  doc="Size of margin at edge that should not be added")
17  seed = lsst.pex.config.Field(dtype=int, default=1,
18  doc="Seed for random number generator")
19 
20 
22  ConfigClass = RandomStarFakeSourcesConfig
23 
24  def __init__(self, **kwargs):
25  BaseFakeSourcesTask.__init__(self, **kwargs)
26  print("RNG seed:", self.config.seed)
27  self.rng = lsst.afw.math.Random(seed=self.config.seed)
28  self.npRand = np.random.RandomState(self.config.seed)
29 
30  def run(self, exposure, background):
31 
32  self.log.info("Adding fake random stars")
33  psf = exposure.getPsf()
34  psfBBox = psf.computeImage().getBBox()
35  margin = int(np.floor(max(psfBBox.getWidth(), psfBBox.getHeight())/2)) + 1
36  if self.config.margin is not None:
37  if self.config.margin < margin:
38  raise ValueError("margin is not large enough for PSF")
39  bboxI = exposure.getBBox(lsst.afw.image.PARENT)
40  bboxI.grow(-margin)
41  bboxD = lsst.afw.geom.BoxD(bboxI)
42  flux = exposure.getCalib().getFlux(self.config.magnitude)
43  md = exposure.getMetadata()
44  for i in range(self.config.nStars):
45  x = self.rng.flat(bboxD.getMinX(), bboxD.getMaxX())
46  y = self.rng.flat(bboxD.getMinY(), bboxD.getMaxY())
47  md.set("FAKE%d" % i, "%.3f, %.3f" % (x, y))
48  self.log.info("Adding fake at: %.1f,%.1f" % (x, y))
49  psfImage = psf.computeImage(lsst.afw.geom.Point2D(x, y))
50  psfImage *= flux
51 
52  psfMaskedImage = lsst.afw.image.MaskedImageF(psfImage.convertF())
53 
54  mask = psfMaskedImage.getMask()
55  mask.set(self.bitmask)
56 
57  # the line below would work if the subimage call worked in PARENT coordinates.
58  # Since it doesn't at present, we have to do the longer call below.
59  # subMaskedImage = exposure.getMaskedImage()[psfImage.getBBox(lsst.afw.image.PARENT)]
60  subMaskedImage = exposure.getMaskedImage().Factory(exposure.getMaskedImage(),
61  psfImage.getBBox(lsst.afw.image.PARENT),
62  lsst.afw.image.PARENT)
63  subMaskedImage += psfMaskedImage
lsst::afw::image
Backwards-compatibility support for depersisting the old Calib (FluxMag0/FluxMag0Err) objects.
Definition: imageAlgorithm.dox:1
lsst::log.log.logContinued.info
def info(fmt, *args)
Definition: logContinued.py:198
lsst.synpipe.randomStarFakes.RandomStarFakeSourcesTask.__init__
def __init__(self, **kwargs)
Definition: randomStarFakes.py:24
lsst.synpipe.randomStarFakes.RandomStarFakeSourcesTask.npRand
npRand
Definition: randomStarFakes.py:28
lsst.pipe.tasks.fakes.BaseFakeSourcesTask.bitmask
bitmask
Definition: fakes.py:61
lsst.pipe.tasks.fakes.BaseFakeSourcesConfig
Definition: fakes.py:29
lsst.pipe.tasks.fakes.BaseFakeSourcesTask
Definition: fakes.py:36
lsst.pipe.base.task.Task.config
config
Definition: task.py:149
lsst.pipe.base.task.Task.log
log
Definition: task.py:148
max
int max
Definition: BoundedField.cc:104
lsst.pipe.tasks.fakes
Definition: fakes.py:1
lsst.synpipe.randomStarFakes.RandomStarFakeSourcesTask.rng
rng
Definition: randomStarFakes.py:27
lsst::afw::math::Random
A class that can be used to generate sequences of random numbers according to a number of different a...
Definition: Random.h:57
lsst::afw::image.slicing.Factory
Factory
Definition: slicing.py:252
lsst::afw::math
Definition: statistics.dox:6
lsst.synpipe.randomStarFakes.RandomStarFakeSourcesTask
Definition: randomStarFakes.py:21
lsst.synpipe.randomStarFakes.RandomStarFakeSourcesTask.run
def run(self, exposure, background)
Definition: randomStarFakes.py:30
lsst.synpipe.randomStarFakes.RandomStarFakeSourcesConfig
Definition: randomStarFakes.py:10
lsst::afw::geom
Definition: frameSetUtils.h:40