LSSTApplications  19.0.0-14-gb0260a2+72efe9b372,20.0.0+7927753e06,20.0.0+8829bf0056,20.0.0+995114c5d2,20.0.0+b6f4b2abd1,20.0.0+bddc4f4cbe,20.0.0-1-g253301a+8829bf0056,20.0.0-1-g2b7511a+0d71a2d77f,20.0.0-1-g5b95a8c+7461dd0434,20.0.0-12-g321c96ea+23efe4bbff,20.0.0-16-gfab17e72e+fdf35455f6,20.0.0-2-g0070d88+ba3ffc8f0b,20.0.0-2-g4dae9ad+ee58a624b3,20.0.0-2-g61b8584+5d3db074ba,20.0.0-2-gb780d76+d529cf1a41,20.0.0-2-ged6426c+226a441f5f,20.0.0-2-gf072044+8829bf0056,20.0.0-2-gf1f7952+ee58a624b3,20.0.0-20-geae50cf+e37fec0aee,20.0.0-25-g3dcad98+544a109665,20.0.0-25-g5eafb0f+ee58a624b3,20.0.0-27-g64178ef+f1f297b00a,20.0.0-3-g4cc78c6+e0676b0dc8,20.0.0-3-g8f21e14+4fd2c12c9a,20.0.0-3-gbd60e8c+187b78b4b8,20.0.0-3-gbecbe05+48431fa087,20.0.0-38-ge4adf513+a12e1f8e37,20.0.0-4-g97dc21a+544a109665,20.0.0-4-gb4befbc+087873070b,20.0.0-4-gf910f65+5d3db074ba,20.0.0-5-gdfe0fee+199202a608,20.0.0-5-gfbfe500+d529cf1a41,20.0.0-6-g64f541c+d529cf1a41,20.0.0-6-g9a5b7a1+a1cd37312e,20.0.0-68-ga3f3dda+5fca18c6a4,20.0.0-9-g4aef684+e18322736b,w.2020.45
LSSTDataManagementBasePackage
FitsReader.h
Go to the documentation of this file.
1 // -*- lsst-c++ -*-
2 #ifndef AFW_TABLE_IO_FitsReader_h_INCLUDED
3 #define AFW_TABLE_IO_FitsReader_h_INCLUDED
4 
5 #include <type_traits>
6 
7 #include "lsst/afw/fits.h"
13 
14 namespace lsst {
15 namespace afw {
16 namespace table {
17 namespace io {
18 
34 class FitsReader {
35 public:
43  explicit FitsReader(std::string const& persistedClassName);
44 
45  FitsReader(FitsReader const&) = default;
46  FitsReader(FitsReader&&) = default;
47  FitsReader& operator=(FitsReader const&) = default;
49 
70  template <typename ContainerT>
71  static ContainerT apply(afw::fits::Fits& fits, int ioFlags,
73  std::shared_ptr<daf::base::PropertyList> metadata = std::make_shared<daf::base::PropertyList>();
74  fits.readMetadata(*metadata, true);
75  FitsReader const* reader = _lookupFitsReader(*metadata);
76  FitsSchemaInputMapper mapper(*metadata, true);
77  reader->_setupArchive(fits, mapper, archive, ioFlags);
78  std::shared_ptr<BaseTable> table = reader->makeTable(mapper, metadata, ioFlags, true);
79  ContainerT container(std::dynamic_pointer_cast<typename ContainerT::Table>(table));
80  if (!container.getTable()) {
81  throw LSST_EXCEPT(pex::exceptions::RuntimeError, "Invalid table class for catalog.");
82  }
83  std::size_t nRows = fits.countRows();
84  container.reserve(nRows);
85  for (std::size_t row = 0; row < nRows; ++row) {
86  mapper.readRecord(
87  // We need to be able to support reading Catalog<T const>, since it shares the same
88  // template
89  // as Catalog<T> (which invokes this method in readFits).
91  *container.addNew()),
92  fits, row);
93  }
94  return container;
95  }
96 
103  template <typename ContainerT, typename SourceT>
104  static ContainerT apply(SourceT& source, int hdu, int ioFlags,
107  fits.setHdu(hdu);
108  return apply<ContainerT>(fits, ioFlags, archive);
109  }
110 
132  int ioFlags, bool stripMetadata) const;
133 
138  virtual bool usesArchive(int ioFlags) const { return false; }
139 
140  virtual ~FitsReader() = default;
141 
142 private:
143  static FitsReader const* _lookupFitsReader(daf::base::PropertyList const& metadata);
144 
145  void _setupArchive(afw::fits::Fits& fits, FitsSchemaInputMapper& mapper,
146  std::shared_ptr<InputArchive> archive, int ioFlags) const;
147 };
148 } // namespace io
149 } // namespace table
150 } // namespace afw
151 } // namespace lsst
152 
153 #endif // !AFW_TABLE_IO_FitsReader_h_INCLUDED
lsst::afw::table::io::FitsReader::FitsReader
FitsReader(FitsReader const &)=default
lsst::afw::table::io::FitsReader::usesArchive
virtual bool usesArchive(int ioFlags) const
Callback that should return true if the FitsReader subclass makes use of an InputArchive to read firs...
Definition: FitsReader.h:138
std::string
STL class.
std::shared_ptr
STL class.
lsst::afw::fits::Fits
A simple struct that combines the two arguments that must be passed to most cfitsio routines and cont...
Definition: fits.h:297
lsst::afw::table::io::FitsSchemaInputMapper
A class that describes a mapping from a FITS binary table to an afw::table Schema.
Definition: FitsSchemaInputMapper.h:91
lsst::afw::table::io::FitsReader::makeTable
virtual std::shared_ptr< BaseTable > makeTable(FitsSchemaInputMapper &mapper, std::shared_ptr< daf::base::PropertyList > metadata, int ioFlags, bool stripMetadata) const
Callback to create a Table object from a FITS binary table schema.
Definition: FitsReader.cc:24
fits.h
lsst::afw
Definition: imageAlgorithm.dox:1
lsst::daf::base::PropertyList
Class for storing ordered metadata with comments.
Definition: PropertyList.h:68
BaseRecord.h
fits
Fits * fits
Definition: FitsWriter.cc:90
ast::detail::source
const char * source()
Source function that allows astChannel to source from a Stream.
Definition: Stream.h:224
FitsSchemaInputMapper.h
lsst::afw::fits::Fits::AUTO_CHECK
@ AUTO_CHECK
Definition: fits.h:308
lsst::afw::fits::Fits::AUTO_CLOSE
@ AUTO_CLOSE
Definition: fits.h:307
lsst::afw::table::io::FitsReader::operator=
FitsReader & operator=(FitsReader &&)=default
lsst::afw::table::io::FitsReader
A utility class for reading FITS binary tables.
Definition: FitsReader.h:34
lsst
A base class for image defects.
Definition: imageAlgorithm.dox:1
LSST_EXCEPT
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
lsst::afw::table::io::FitsReader::apply
static ContainerT apply(SourceT &source, int hdu, int ioFlags, std::shared_ptr< InputArchive > archive=std::shared_ptr< InputArchive >())
Create a new Catalog by reading a FITS file.
Definition: FitsReader.h:104
row
int row
Definition: CR.cc:145
lsst::afw::table::io::FitsReader::~FitsReader
virtual ~FitsReader()=default
lsst::afw::table::io::FitsReader::FitsReader
FitsReader(std::string const &persistedClassName)
Construct a FitsReader, registering it to be used for all persisted tables with the given tag.
Definition: FitsReader.cc:32
mapper
SchemaMapper * mapper
Definition: SchemaMapper.cc:78
lsst::afw::table::io::FitsReader::apply
static ContainerT apply(afw::fits::Fits &fits, int ioFlags, std::shared_ptr< InputArchive > archive=std::shared_ptr< InputArchive >())
Create a new Catalog by reading a FITS binary table.
Definition: FitsReader.h:71
std::remove_const
BaseTable.h
InputArchive.h
std::size_t
Schema.h
lsst::afw::table::io::FitsReader::FitsReader
FitsReader(FitsReader &&)=default
lsst::afw::table::io::FitsReader::operator=
FitsReader & operator=(FitsReader const &)=default
lsst.pex::exceptions::RuntimeError
Reports errors that are due to events beyond the control of the program.
Definition: Runtime.h:104