|
lsst.afw gf03f0b42f3+f620a9ee49
|
Public Member Functions | |
| __post_init__ (self) | |
| isPersistable (self) | |
| None | update_schema (cls, Schema schema) |
| None | update_record (self, BaseRecord record) |
| ExposureSummaryStats | from_record (cls, BaseRecord record) |
| virtual std::shared_ptr< Storable > | cloneStorable () const |
| Create a new object that is a copy of this one (optional operation). | |
| virtual std::string | toString () const |
| Create a string representation of this object (optional operation). | |
| virtual std::size_t | hash_value () const |
| Return a hash of this object (optional operation). | |
| virtual bool | equals (Storable const &other) const noexcept |
| Compare this object to another Storable. | |
| void | writeFits (std::string const &fileName, std::string const &mode="w") const |
| Write the object to a regular FITS file. | |
| void | writeFits (fits::MemFileManager &manager, std::string const &mode="w") const |
| Write the object to a FITS image in memory. | |
| void | writeFits (fits::Fits &fitsfile) const |
| Write the object to an already-open FITS object. | |
Static Public Attributes | |
| int | version = 0 |
| float | psfSigma = float('nan') |
| float | psfArea = float('nan') |
| float | psfIxx = float('nan') |
| float | psfIyy = float('nan') |
| float | psfIxy = float('nan') |
| float | ra = float('nan') |
| float | dec = float('nan') |
| float | pixelScale = float('nan') |
| float | zenithDistance = float('nan') |
| float | expTime = float('nan') |
| float | zeroPoint = float('nan') |
| float | skyBg = float('nan') |
| float | skyNoise = float('nan') |
| float | meanVar = float('nan') |
| list | raCorners = dataclasses.field(default_factory=_default_corners) |
| list | decCorners = dataclasses.field(default_factory=_default_corners) |
| float | psfAdaptiveThresholdValue = float('nan') |
| float | psfAdaptiveIncludeThresholdMultiplier = float('nan') |
| int | nShapeletsStar = 0 |
| float | shapeletsOnlyIqScore = float('nan') |
| float | shapeletsIqScore = float('nan') |
| list | shapeletsCoeffs = dataclasses.field(default_factory=list) |
| float | centroidDiffShapeletsVsSlotMedian = float('nan') |
| float | shapeletsStarEMedian = float('nan') |
| float | shapeletsStarUnNormalizedEMedian = float('nan') |
| float | refCatSourceDensity = float('nan') |
| float | astromOffsetMean = float('nan') |
| float | astromOffsetStd = float('nan') |
| int | nPsfStar = 0 |
| float | psfStarDeltaE1Median = float('nan') |
| float | psfStarDeltaE2Median = float('nan') |
| float | psfStarDeltaE1Scatter = float('nan') |
| float | psfStarDeltaE2Scatter = float('nan') |
| float | psfStarDeltaSizeMedian = float('nan') |
| float | psfStarDeltaSizeScatter = float('nan') |
| float | psfStarScaledDeltaSizeScatter = float('nan') |
| float | psfTraceRadiusDelta = float('nan') |
| float | psfApFluxDelta = float('nan') |
| float | psfApCorrSigmaScaledDelta = float('nan') |
| float | maxDistToNearestPsf = float('nan') |
| float | starEMedian = float('nan') |
| float | starUnNormalizedEMedian = float('nan') |
| float | starComa1Median = float('nan') |
| float | starComa2Median = float('nan') |
| float | starTrefoil1Median = float('nan') |
| float | starTrefoil2Median = float('nan') |
| float | starKurtosisMedian = float('nan') |
| float | starE41Median = float('nan') |
| float | starE42Median = float('nan') |
| float | effTime = float('nan') |
| float | effTimePsfSigmaScale = float('nan') |
| float | effTimeSkyBgScale = float('nan') |
| float | effTimeZeroPointScale = float('nan') |
| float | magLim = float('nan') |
Protected Types | |
| using | OutputArchiveHandle = io::OutputArchiveHandle |
Protected Member Functions | |
| _getPersistenceName (self) | |
| _getPythonModule (self) | |
| _write (self) | |
| virtual std::string | getPersistenceName () const |
| Return the unique name used to persist this object and look up its factory. | |
| virtual std::string | getPythonModule () const |
| Return the fully-qualified Python module that should be imported to guarantee that its factory is registered. | |
| virtual void | write (OutputArchiveHandle &handle) const |
| Write the object to one or more catalogs. | |
Static Protected Member Functions | |
| _read (bytes) | |
| template<class T> | |
| static bool | singleClassEquals (T const &lhs, Storable const &rhs) |
| Test if a Storable is of a particular class and equal to another object. | |
Static Protected Attributes | |
| str | _persistence_name = 'ExposureSummaryStats' |
| _factory = StorableHelperFactory(__name__, _persistence_name) | |
Related Symbols | |
(Note that these are not member symbols.) | |
| std::ostream & | operator<< (std::ostream &os, Storable const &storable) |
| Output operator for Storable. | |
Definition at line 43 of file _exposureSummaryStats.py.
|
protectedinherited |
Definition at line 108 of file Persistable.h.
| lsst.afw.image._exposureSummaryStats.ExposureSummaryStats.__post_init__ | ( | self | ) |
Definition at line 257 of file _exposureSummaryStats.py.
|
protected |
Definition at line 263 of file _exposureSummaryStats.py.
|
protected |
Definition at line 266 of file _exposureSummaryStats.py.
|
staticprotected |
Definition at line 273 of file _exposureSummaryStats.py.
|
protected |
Definition at line 269 of file _exposureSummaryStats.py.
|
virtualinherited |
Create a new object that is a copy of this one (optional operation).
This operation is required for Storables that are stored in GenericMap by value, but not for those stored by shared pointer.
| UnsupportedOperationException | Thrown if this object is not cloneable. |
clone operation, the two should behave identically except for the formal return type.__deepcopy__ if it exists. Reimplemented in lsst::afw::detection::Psf, lsst::afw::geom::polygon::Polygon, lsst::afw::geom::SkyWcs, lsst::afw::image::ApCorrMap, lsst::afw::image::CoaddInputs, lsst::afw::image::FilterLabel, lsst::afw::image::PhotoCalib, lsst::afw::image::VisitInfo, lsst::afw::typehandling::StorableHelper< Base >, and StorableHelper< Base >.
Definition at line 36 of file Storable.cc.
|
virtualnoexceptinherited |
Compare this object to another Storable.
Subclasses that implement equality comparison must override this method to give results consistent with operator== for all inputs that are accepted by both.
false. If cross-class comparisons are valid, implementers should take care that they are symmetric and will give the same result no matter what the compile-time types of the left- and right-hand sides are.__eq__ if it exists. Reimplemented in lsst::afw::geom::polygon::Polygon, lsst::afw::geom::SkyWcs, lsst::afw::image::PhotoCalib, lsst::afw::image::VisitInfo, and lsst::afw::typehandling::StorableHelper< Base >.
Definition at line 48 of file Storable.cc.
| ExposureSummaryStats lsst.afw.image._exposureSummaryStats.ExposureSummaryStats.from_record | ( | cls, | |
| BaseRecord | record ) |
Read summary-statistic columns from a record into ``self``.
Parameters
----------
record : `lsst.afw.table.BaseRecord`
Record to read from. This is expected to frequently be an
`ExposureRecord` instance (with higher-level code adding other
columns and objects), but this method can work with any record
type, ignoring any attributes or columns it doesn't recognize.
Returns
-------
summary : `ExposureSummaryStats`
Summary statistics object created from the given record.
Definition at line 660 of file _exposureSummaryStats.py.
|
protectedvirtualinherited |
Return the unique name used to persist this object and look up its factory.
Must be less than ArchiveIndexSchema::MAX_NAME_LENGTH characters.
Reimplemented in lsst::afw::cameraGeom::Camera, lsst::afw::cameraGeom::Detector, lsst::afw::cameraGeom::DetectorCollection, lsst::afw::cameraGeom::TransformMap, lsst::afw::detection::Footprint, lsst::afw::detection::GaussianPsf, lsst::afw::detection::HeavyFootprint< ImagePixelT, MaskPixelT, VariancePixelT >::Factory, lsst::afw::detection::HeavyFootprint< ImagePixelT, MaskPixelT, VariancePixelT >, lsst::afw::geom::polygon::Polygon, lsst::afw::geom::SkyWcs, lsst::afw::geom::SpanSet, lsst::afw::geom::Transform< FromEndpoint, ToEndpoint >, lsst::afw::geom::Transform< afw::geom::Point2Endpoint, afw::geom::GenericEndpoint >, lsst::afw::geom::Transform< afw::geom::Point2Endpoint, afw::geom::GenericEndpoint >, lsst::afw::geom::Transform< Point2Endpoint, GenericEndpoint >, lsst::afw::geom::Transform< Point2Endpoint, GenericEndpoint >, lsst::afw::geom::Transform< Point2Endpoint, Point2Endpoint >, lsst::afw::geom::Transform< Point2Endpoint, Point2Endpoint >, lsst::afw::geom::Transform< Point2Endpoint, SpherePointEndpoint >, lsst::afw::geom::Transform< Point2Endpoint, SpherePointEndpoint >, lsst::afw::image::ApCorrMap, lsst::afw::image::CoaddInputs, lsst::afw::image::FilterLabel, lsst::afw::image::PhotoCalib, lsst::afw::image::VisitInfo, lsst::afw::math::AnalyticKernel, lsst::afw::math::BilinearWarpingKernel, lsst::afw::math::Chebyshev1Function2< ReturnT >, lsst::afw::math::ChebyshevBoundedField, lsst::afw::math::DeltaFunctionKernel, lsst::afw::math::DoubleGaussianFunction2< ReturnT >, lsst::afw::math::FixedKernel, lsst::afw::math::GaussianFunction2< ReturnT >, lsst::afw::math::LanczosWarpingKernel, lsst::afw::math::LinearCombinationKernel, lsst::afw::math::NearestWarpingKernel, lsst::afw::math::PixelAreaBoundedField, lsst::afw::math::PolynomialFunction2< ReturnT >, lsst::afw::math::ProductBoundedField, lsst::afw::math::TransformBoundedField, lsst::afw::math::WarpingControl, lsst::afw::typehandling::StorableHelper< Base >, and StorableHelper< Base >.
Definition at line 34 of file Persistable.cc.
|
protectedvirtualinherited |
Return the fully-qualified Python module that should be imported to guarantee that its factory is registered.
Must be less than ArchiveIndexSchema::MAX_MODULE_LENGTH characters.
Will be ignored if empty.
Reimplemented in lsst::afw::cameraGeom::Detector, lsst::afw::cameraGeom::DetectorCollection, lsst::afw::cameraGeom::TransformMap, lsst::afw::detection::Footprint, lsst::afw::detection::GaussianPsf, lsst::afw::geom::SkyWcs, lsst::afw::geom::SpanSet, lsst::afw::geom::Transform< FromEndpoint, ToEndpoint >, lsst::afw::geom::Transform< afw::geom::Point2Endpoint, afw::geom::GenericEndpoint >, lsst::afw::geom::Transform< afw::geom::Point2Endpoint, afw::geom::GenericEndpoint >, lsst::afw::geom::Transform< Point2Endpoint, GenericEndpoint >, lsst::afw::geom::Transform< Point2Endpoint, GenericEndpoint >, lsst::afw::geom::Transform< Point2Endpoint, Point2Endpoint >, lsst::afw::geom::Transform< Point2Endpoint, Point2Endpoint >, lsst::afw::geom::Transform< Point2Endpoint, SpherePointEndpoint >, lsst::afw::geom::Transform< Point2Endpoint, SpherePointEndpoint >, lsst::afw::image::ApCorrMap, lsst::afw::image::CoaddInputs, lsst::afw::image::FilterLabel, lsst::afw::image::TransmissionCurve, lsst::afw::math::BilinearWarpingKernel, lsst::afw::math::ChebyshevBoundedField, lsst::afw::math::Function< ReturnT >, lsst::afw::math::Function< Kernel::Pixel >, lsst::afw::math::Kernel, lsst::afw::math::LanczosWarpingKernel, lsst::afw::math::NearestWarpingKernel, lsst::afw::math::PixelAreaBoundedField, lsst::afw::math::ProductBoundedField, lsst::afw::math::TransformBoundedField, lsst::afw::math::WarpingControl, lsst::afw::typehandling::StorableHelper< Base >, and StorableHelper< Base >.
Definition at line 36 of file Persistable.cc.
|
virtualinherited |
Return a hash of this object (optional operation).
| UnsupportedOperationException | Thrown if this object is not hashable. |
__hash__ if it exists. Reimplemented in lsst::afw::geom::polygon::Polygon, lsst::afw::image::FilterLabel, lsst::afw::image::VisitInfo, lsst::afw::typehandling::StorableHelper< Base >, and StorableHelper< Base >.
Definition at line 44 of file Storable.cc.
| lsst.afw.image._exposureSummaryStats.ExposureSummaryStats.isPersistable | ( | self | ) |
Definition at line 260 of file _exposureSummaryStats.py.
|
inlinestaticprotectedinherited |
Test if a Storable is of a particular class and equal to another object.
This method template simplifies implementations of equals that delegate to operator== without supporting cross-class comparisons.
| T | The class expected of the two objects to be compared. |
| lhs,rhs | The objects to compare. Note that rhs need not be a T, while lhs must be. |
true if rhs is a T and lhs == rhs; false otherwise.operator==. Most implementations of operator== do not throw.operator== with both arguments of compile-time type T const&. Its use is not recommended if there would be any ambiguity as to which operator== gets picked by overload resolution.This method template is typically called from equals as:
bool MyType::equals(Storable const& other) const noexcept {
return singleClassEquals(*this, other);
}
Definition at line 151 of file Storable.h.
|
virtualinherited |
Create a string representation of this object (optional operation).
| UnsupportedOperationException | Thrown if this object does not have a string representation. |
__repr__. Reimplemented in lsst::afw::geom::polygon::Polygon, lsst::afw::geom::SkyWcs, lsst::afw::image::FilterLabel, lsst::afw::image::PhotoCalib, lsst::afw::image::VisitInfo, lsst::afw::typehandling::StorableHelper< Base >, and StorableHelper< Base >.
Definition at line 40 of file Storable.cc.
| None lsst.afw.image._exposureSummaryStats.ExposureSummaryStats.update_record | ( | self, | |
| BaseRecord | record ) |
Write summary-statistic columns into a record.
Parameters
----------
record : `lsst.afw.table.BaseRecord`
Record to update. This is expected to frequently be an
`ExposureRecord` instance (with higher-level code adding other
columns and objects), but this method can work with any record
type.
Definition at line 639 of file _exposureSummaryStats.py.
| None lsst.afw.image._exposureSummaryStats.ExposureSummaryStats.update_schema | ( | cls, | |
| Schema | schema ) |
Update an schema to includes for all summary statistic fields.
Parameters
-------
schema : `lsst.afw.table.Schema`
Schema to add which fields will be added.
Definition at line 302 of file _exposureSummaryStats.py.
|
protectedvirtualinherited |
Write the object to one or more catalogs.
The handle object passed to this function provides an interface for adding new catalogs and adding nested objects to the same archive (while checking for duplicates). See OutputArchiveHandle for more information.
Reimplemented in lsst::afw::cameraGeom::Camera, lsst::afw::cameraGeom::Detector, lsst::afw::cameraGeom::DetectorCollection, lsst::afw::cameraGeom::TransformMap, lsst::afw::detection::Footprint, lsst::afw::detection::GaussianPsf, lsst::afw::detection::HeavyFootprint< ImagePixelT, MaskPixelT, VariancePixelT >::Factory, lsst::afw::detection::HeavyFootprint< ImagePixelT, MaskPixelT, VariancePixelT >, lsst::afw::geom::polygon::Polygon, lsst::afw::geom::SkyWcs, lsst::afw::geom::SpanSet, lsst::afw::geom::Transform< FromEndpoint, ToEndpoint >, lsst::afw::geom::Transform< afw::geom::Point2Endpoint, afw::geom::GenericEndpoint >, lsst::afw::geom::Transform< afw::geom::Point2Endpoint, afw::geom::GenericEndpoint >, lsst::afw::geom::Transform< Point2Endpoint, GenericEndpoint >, lsst::afw::geom::Transform< Point2Endpoint, GenericEndpoint >, lsst::afw::geom::Transform< Point2Endpoint, Point2Endpoint >, lsst::afw::geom::Transform< Point2Endpoint, Point2Endpoint >, lsst::afw::geom::Transform< Point2Endpoint, SpherePointEndpoint >, lsst::afw::geom::Transform< Point2Endpoint, SpherePointEndpoint >, lsst::afw::image::ApCorrMap, lsst::afw::image::CoaddInputs, lsst::afw::image::FilterLabel, lsst::afw::image::PhotoCalib, lsst::afw::image::VisitInfo, lsst::afw::math::AnalyticKernel, lsst::afw::math::BilinearWarpingKernel, lsst::afw::math::Chebyshev1Function2< ReturnT >, lsst::afw::math::ChebyshevBoundedField, lsst::afw::math::DeltaFunctionKernel, lsst::afw::math::DoubleGaussianFunction2< ReturnT >, lsst::afw::math::FixedKernel, lsst::afw::math::GaussianFunction2< ReturnT >, lsst::afw::math::LanczosWarpingKernel, lsst::afw::math::LinearCombinationKernel, lsst::afw::math::NearestWarpingKernel, lsst::afw::math::PixelAreaBoundedField, lsst::afw::math::PolynomialFunction2< ReturnT >, lsst::afw::math::ProductBoundedField, lsst::afw::math::TransformBoundedField, lsst::afw::math::WarpingControl, lsst::afw::typehandling::StorableHelper< Base >, and StorableHelper< Base >.
Definition at line 38 of file Persistable.cc.
|
inherited |
Write the object to an already-open FITS object.
| [in] | fitsfile | Open FITS object to write to. |
Definition at line 18 of file Persistable.cc.
|
inherited |
Write the object to a FITS image in memory.
| [in] | manager | Name of the file to write to. |
| [in] | mode | If "w", any existing file with the given name will be overwritten. If "a", new HDUs will be appended to an existing file. |
Definition at line 29 of file Persistable.cc.
|
inherited |
Write the object to a regular FITS file.
| [in] | fileName | Name of the file to write to. |
| [in] | mode | If "w", any existing file with the given name will be overwritten. If "a", new HDUs will be appended to an existing file. |
Definition at line 24 of file Persistable.cc.
|
Output operator for Storable.
| os | the desired output stream |
| storable | the object to print |
os| UnsupportedOperationException | Thrown if storable does not have an implementation of Storable::toString. |
Definition at line 174 of file Storable.h.
|
staticprotected |
Definition at line 46 of file _exposureSummaryStats.py.
|
staticprotected |
Definition at line 44 of file _exposureSummaryStats.py.
|
static |
Definition at line 143 of file _exposureSummaryStats.py.
|
static |
Definition at line 146 of file _exposureSummaryStats.py.
|
static |
Definition at line 123 of file _exposureSummaryStats.py.
|
static |
Definition at line 68 of file _exposureSummaryStats.py.
|
static |
Definition at line 95 of file _exposureSummaryStats.py.
|
static |
Definition at line 238 of file _exposureSummaryStats.py.
|
static |
Definition at line 243 of file _exposureSummaryStats.py.
|
static |
Definition at line 246 of file _exposureSummaryStats.py.
|
static |
Definition at line 249 of file _exposureSummaryStats.py.
|
static |
Definition at line 77 of file _exposureSummaryStats.py.
|
static |
Definition at line 252 of file _exposureSummaryStats.py.
|
static |
Definition at line 188 of file _exposureSummaryStats.py.
|
static |
Definition at line 89 of file _exposureSummaryStats.py.
|
static |
Definition at line 149 of file _exposureSummaryStats.py.
|
static |
Definition at line 104 of file _exposureSummaryStats.py.
|
static |
Definition at line 71 of file _exposureSummaryStats.py.
|
static |
Definition at line 101 of file _exposureSummaryStats.py.
|
static |
Definition at line 98 of file _exposureSummaryStats.py.
|
static |
Definition at line 183 of file _exposureSummaryStats.py.
|
static |
Definition at line 178 of file _exposureSummaryStats.py.
|
static |
Definition at line 53 of file _exposureSummaryStats.py.
|
static |
Definition at line 56 of file _exposureSummaryStats.py.
|
static |
Definition at line 62 of file _exposureSummaryStats.py.
|
static |
Definition at line 59 of file _exposureSummaryStats.py.
|
static |
Definition at line 50 of file _exposureSummaryStats.py.
|
static |
Definition at line 152 of file _exposureSummaryStats.py.
|
static |
Definition at line 158 of file _exposureSummaryStats.py.
|
static |
Definition at line 155 of file _exposureSummaryStats.py.
|
static |
Definition at line 161 of file _exposureSummaryStats.py.
|
static |
Definition at line 164 of file _exposureSummaryStats.py.
|
static |
Definition at line 167 of file _exposureSummaryStats.py.
|
static |
Definition at line 170 of file _exposureSummaryStats.py.
|
static |
Definition at line 173 of file _exposureSummaryStats.py.
|
static |
Definition at line 65 of file _exposureSummaryStats.py.
|
static |
Definition at line 92 of file _exposureSummaryStats.py.
|
static |
Definition at line 138 of file _exposureSummaryStats.py.
|
static |
Definition at line 120 of file _exposureSummaryStats.py.
|
static |
Definition at line 113 of file _exposureSummaryStats.py.
|
static |
Definition at line 107 of file _exposureSummaryStats.py.
|
static |
Definition at line 128 of file _exposureSummaryStats.py.
|
static |
Definition at line 133 of file _exposureSummaryStats.py.
|
static |
Definition at line 83 of file _exposureSummaryStats.py.
|
static |
Definition at line 86 of file _exposureSummaryStats.py.
|
static |
Definition at line 203 of file _exposureSummaryStats.py.
|
static |
Definition at line 208 of file _exposureSummaryStats.py.
|
static |
Definition at line 228 of file _exposureSummaryStats.py.
|
static |
Definition at line 233 of file _exposureSummaryStats.py.
|
static |
Definition at line 193 of file _exposureSummaryStats.py.
|
static |
Definition at line 223 of file _exposureSummaryStats.py.
|
static |
Definition at line 213 of file _exposureSummaryStats.py.
|
static |
Definition at line 218 of file _exposureSummaryStats.py.
|
static |
Definition at line 198 of file _exposureSummaryStats.py.
|
static |
Definition at line 48 of file _exposureSummaryStats.py.
|
static |
Definition at line 74 of file _exposureSummaryStats.py.
|
static |
Definition at line 80 of file _exposureSummaryStats.py.