LSSTApplications  18.1.0
LSSTDataManagementBasePackage
ExposureFitsReader.h
Go to the documentation of this file.
1 /*
2  * Developed for the LSST Data Management System.
3  * This product includes software developed by the LSST Project
4  * (https://www.lsst.org).
5  * See the COPYRIGHT file at the top-level directory of this distribution
6  * for details of code ownership.
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program. If not, see <https://www.gnu.org/licenses/>.
20  */
21 
22 #ifndef LSST_AFW_IMAGE_EXPOSUREFITSREADER_H
23 #define LSST_AFW_IMAGE_EXPOSUREFITSREADER_H
24 
28 
29 namespace lsst {
30 namespace afw {
31 namespace image {
32 
43 public:
49  explicit ExposureFitsReader(std::string const &fileName);
50 
56  explicit ExposureFitsReader(fits::MemFileManager &manager);
57 
64  explicit ExposureFitsReader(fits::Fits *fitsFile);
65 
66  // FITS readers are not copyable, movable, or assignable.
67  ExposureFitsReader(ExposureFitsReader const &) = delete;
71 
72  ~ExposureFitsReader() noexcept;
73 
75 
82  std::string readMaskDType() const;
85 
94 
103  ImageOrigin origin = PARENT);
104 
112 
115 
117  Filter readFilter();
118 
121 
124 
127 
130 
133 
136 
139 
142 
145 
147 
160  template <typename ImagePixelT>
162  ImageOrigin origin = PARENT, bool allowUnsafe = false);
163  template <typename ImagePixelT>
164  ndarray::Array<ImagePixelT, 2, 2> readImageArray(lsst::geom::Box2I const &bbox = lsst::geom::Box2I(),
165  ImageOrigin origin = PARENT, bool allowUnsafe = false);
167 
183  template <typename MaskPixelT>
185  ImageOrigin origin = PARENT, bool conformMasks = false,
186  bool allowUnsafe = false);
187 
201  template <typename MaskPixelT>
202  ndarray::Array<MaskPixelT, 2, 2> readMaskArray(lsst::geom::Box2I const &bbox = lsst::geom::Box2I(),
203  ImageOrigin origin = PARENT, bool allowUnsafe = false);
204 
206 
219  template <typename VariancePixelT>
221  ImageOrigin origin = PARENT, bool allowUnsafe = false);
222  template <typename VariancePixelT>
223  ndarray::Array<VariancePixelT, 2, 2> readVarianceArray(
225  bool allowUnsafe = false);
227 
243  template <typename ImagePixelT, typename MaskPixelT = MaskPixel, typename VariancePixelT = VariancePixel>
246  bool conformMasks = false, bool allowUnsafe = false);
247 
263  template <typename ImagePixelT, typename MaskPixelT = MaskPixel, typename VariancePixelT = VariancePixel>
266  bool conformMasks = false, bool allowUnsafe = false);
267 
271  std::string getFileName() const { return _maskedImageReader.getFileName(); }
272 
273 private:
274  class MetadataReader;
275  class ArchiveReader;
276 
277  void _ensureReaders();
278 
279  fits::Fits *_getFitsFile() { return _maskedImageReader._getFitsFile(); }
280 
281  MaskedImageFitsReader _maskedImageReader;
282  std::unique_ptr<MetadataReader> _metadataReader;
283  std::unique_ptr<ArchiveReader> _archiveReader;
284 };
285 
286 } // namespace image
287 } // namespace afw
288 } // namespace lsst
289 
290 #endif // !LSST_AFW_IMAGE_EXPOSUREFITSREADER_H
lsst::geom::Box2I readBBox(ImageOrigin origin=PARENT)
Read the bounding box of the on-disk image.
std::string getFileName() const
Return the name of the file this reader targets.
std::shared_ptr< ExposureInfo > readExposureInfo()
Read the ExposureInfo containing all non-image components.
Image< VariancePixelT > readVariance(lsst::geom::Box2I const &bbox=lsst::geom::Box2I(), ImageOrigin origin=PARENT, bool allowUnsafe=false)
Read the variance plane.
A class to contain the data, WCS, and other information needed to describe an image of the sky...
Definition: Exposure.h:72
std::shared_ptr< CoaddInputs > readCoaddInputs()
Read the Exposure&#39;s coadd input catalogs.
ndarray::Array< VariancePixelT, 2, 2 > readVarianceArray(lsst::geom::Box2I const &bbox=lsst::geom::Box2I(), ImageOrigin origin=PARENT, bool allowUnsafe=false)
Read the variance plane.
std::shared_ptr< VisitInfo > readVisitInfo()
Read the Exposure&#39;s visit metadata.
Image< ImagePixelT > readImage(lsst::geom::Box2I const &bbox=lsst::geom::Box2I(), ImageOrigin origin=PARENT, bool allowUnsafe=false)
Read the image plane.
ExposureFitsReader(std::string const &fileName)
Construct a FITS reader object.
A simple struct that combines the two arguments that must be passed to most cfitsio routines and cont...
Definition: fits.h:297
std::shared_ptr< PhotoCalib > readPhotoCalib()
Read the Exposure&#39;s photometric calibration.
ExposureFitsReader & operator=(ExposureFitsReader const &)=delete
std::string readImageDType() const
Read a string describing the pixel type of the on-disk image plane.
STL class.
Filter readFilter()
Read the Exposure&#39;s filter.
std::string getFileName() const
Return the name of the file this reader targets.
std::shared_ptr< afw::geom::polygon::Polygon > readValidPolygon()
Read the polygon describing the region of validity for the Exposure.
A base class for image defects.
Represent a 2-dimensional array of bitmask pixels.
Definition: Mask.h:78
Lifetime-management for memory that goes into FITS memory files.
Definition: fits.h:121
A class to manipulate images, masks, and variance as a single object.
Definition: MaskedImage.h:74
table::Box2IKey bbox
Definition: Detector.cc:169
std::string readMaskDType() const
Read a string describing the pixel type of the on-disk image plane.
Holds an integer identifier for an LSST filter.
Definition: Filter.h:141
std::shared_ptr< afw::geom::SkyWcs > readWcs()
Read the Exposure&#39;s world coordinate system.
std::shared_ptr< ApCorrMap > readApCorrMap()
Read the Exposure&#39;s aperture correction map.
MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT > readMaskedImage(lsst::geom::Box2I const &bbox=lsst::geom::Box2I(), ImageOrigin origin=PARENT, bool conformMasks=false, bool allowUnsafe=false)
Read the MaskedImage.
STL class.
std::string readVarianceDType() const
Read a string describing the pixel type of the on-disk image plane.
ndarray::Array< ImagePixelT, 2, 2 > readImageArray(lsst::geom::Box2I const &bbox=lsst::geom::Box2I(), ImageOrigin origin=PARENT, bool allowUnsafe=false)
Read the image plane.
A FITS reader class for MaskedImages and their components.
lsst::geom::Point2I readXY0(lsst::geom::Box2I const &bbox=lsst::geom::Box2I(), ImageOrigin origin=PARENT)
Read the image origin from the on-disk image or a subimage thereof.
A FITS reader class for Exposures and their components.
std::shared_ptr< cameraGeom::Detector > readDetector()
Read the Exposure&#39;s detector.
ndarray::Array< MaskPixelT, 2, 2 > readMaskArray(lsst::geom::Box2I const &bbox=lsst::geom::Box2I(), ImageOrigin origin=PARENT, bool allowUnsafe=false)
Read the mask plane.
Exposure< ImagePixelT, MaskPixelT, VariancePixelT > read(lsst::geom::Box2I const &bbox=lsst::geom::Box2I(), ImageOrigin origin=PARENT, bool conformMasks=false, bool allowUnsafe=false)
Read the full Exposure.
std::shared_ptr< daf::base::PropertyList > readMetadata()
Read the flexible metadata associated with the Exposure.
std::shared_ptr< detection::Psf > readPsf()
Read the Exposure&#39;s point-spread function.
Mask< MaskPixelT > readMask(lsst::geom::Box2I const &bbox=lsst::geom::Box2I(), ImageOrigin origin=PARENT, bool conformMasks=false, bool allowUnsafe=false)
Read the mask plane.
Backwards-compatibility support for depersisting the old Calib (FluxMag0/FluxMag0Err) objects...
std::shared_ptr< TransmissionCurve > readTransmissionCurve()
Read the Exposure&#39;s transmission curve.
An integer coordinate rectangle.
Definition: Box.h:54
A class to represent a 2-dimensional array of pixels.
Definition: Image.h:59