LSST Applications g034a557a3c+0df69e75ff,g0afe43252f+b86e4b8053,g11f7dcd041+017865fdd3,g1cd03abf6b+1c8dc8730a,g1ce3e0751c+f991eae79d,g28da252d5a+a136f03385,g2bbee38e9b+b6588ad223,g2bc492864f+b6588ad223,g2cdde0e794+8523d0dbb4,g347aa1857d+b6588ad223,g35bb328faa+b86e4b8053,g3a166c0a6a+b6588ad223,g461a3dce89+b86e4b8053,g52b1c1532d+b86e4b8053,g6233c72cae+da9c58a417,g7f3b0d46df+ad13c1b82d,g80478fca09+f29c5d6c70,g858d7b2824+4fc997592f,g8cd86fa7b1+5f14beadf5,g965a9036f2+4fc997592f,g979bb04a14+87f76c17e6,g9ddcbc5298+f24b38b85a,gae0086650b+b86e4b8053,gbb886bcc26+77117948e7,gc28159a63d+b6588ad223,gc30aee3386+a2f0f6cab9,gcaf7e4fdec+4fc997592f,gcd45df26be+4fc997592f,gcdd4ae20e8+0acf6430b1,gcf0d15dbbd+0acf6430b1,gdaeeff99f8+006e14e809,gdbce86181e+467b805b48,ge3d4d395c2+224150c836,ge5f7162a3a+1d9667e7ad,ge6cb8fbbf7+0992c83eee,ge79ae78c31+b6588ad223,gf048a9a2f4+41d6ddaca1,gf0baf85859+b4cca3d10f,w.2024.30
LSST Data Management Base Package
Loading...
Searching...
No Matches
Static Public Attributes | Protected Member Functions | Static Protected Attributes | List of all members
lsst.pipe.tasks.functors.PsfHsmTraceSizeDiff Class Reference
Inheritance diagram for lsst.pipe.tasks.functors.PsfHsmTraceSizeDiff:
lsst.pipe.tasks.functors.Functor

Static Public Attributes

str name = 'PSF - HSM Trace Size'
 
str shortname = 'psf_HsmTrace'
 

Protected Member Functions

 _func (self, df)
 

Static Protected Attributes

tuple _columns
 

Detailed Description

Functor to calculate the HSM trace radius size difference (%) between
the object and the PSF model.

See Also
--------
HsmTraceSize

Definition at line 1065 of file functors.py.

Member Function Documentation

◆ _func()

lsst.pipe.tasks.functors.PsfHsmTraceSizeDiff._func ( self,
df )
protected

Reimplemented from lsst.pipe.tasks.functors.Functor.

Definition at line 1080 of file functors.py.

1080 def _func(self, df):
1081 srcSize = np.sqrt(0.5*(df["ext_shapeHSM_HsmSourceMoments_xx"]
1082 + df["ext_shapeHSM_HsmSourceMoments_yy"]))
1083 psfSize = np.sqrt(0.5*(df["ext_shapeHSM_HsmPsfMoments_xx"]
1084 + df["ext_shapeHSM_HsmPsfMoments_yy"]))
1085 sizeDiff = 100*(srcSize - psfSize)/(0.5*(srcSize + psfSize))
1086 return sizeDiff
1087
1088

Member Data Documentation

◆ _columns

tuple lsst.pipe.tasks.functors.PsfHsmTraceSizeDiff._columns
staticprotected
Initial value:
= ("ext_shapeHSM_HsmSourceMoments_xx",
"ext_shapeHSM_HsmSourceMoments_yy",
"ext_shapeHSM_HsmPsfMoments_xx",
"ext_shapeHSM_HsmPsfMoments_yy")

Definition at line 1075 of file functors.py.

◆ name

str lsst.pipe.tasks.functors.PsfHsmTraceSizeDiff.name = 'PSF - HSM Trace Size'
static

Definition at line 1073 of file functors.py.

◆ shortname

str lsst.pipe.tasks.functors.PsfHsmTraceSizeDiff.shortname = 'psf_HsmTrace'
static

Definition at line 1074 of file functors.py.


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