LSSTApplications  8.0.0.0+107,8.0.0.1+13,9.1+18,9.2,master-g084aeec0a4,master-g0aced2eed8+6,master-g15627eb03c,master-g28afc54ef9,master-g3391ba5ea0,master-g3d0fb8ae5f,master-g4432ae2e89+36,master-g5c3c32f3ec+17,master-g60f1e072bb+1,master-g6a3ac32d1b,master-g76a88a4307+1,master-g7bce1f4e06+57,master-g8ff4092549+31,master-g98e65bf68e,master-ga6b77976b1+53,master-gae20e2b580+3,master-gb584cd3397+53,master-gc5448b162b+1,master-gc54cf9771d,master-gc69578ece6+1,master-gcbf758c456+22,master-gcec1da163f+63,master-gcf15f11bcc,master-gd167108223,master-gf44c96c709
LSSTDataManagementBasePackage
InputArchive.h
Go to the documentation of this file.
1 // -*- lsst-c++ -*-
2 #ifndef AFW_TABLE_IO_InputArchive_h_INCLUDED
3 #define AFW_TABLE_IO_InputArchive_h_INCLUDED
4 
5 #include <map>
6 
7 #include "lsst/base.h"
9 
10 namespace lsst { namespace afw { namespace table {
11 
12 class BaseRecord;
13 template <typename RecordT> class CatalogT;
14 typedef CatalogT<BaseRecord> BaseCatalog;
15 
16 namespace io {
17 
18 class CatalogVector;
19 
28 class InputArchive {
29 public:
30 
31  typedef std::map<int,PTR(Persistable)> Map;
32 
34  InputArchive();
35 
37  InputArchive(BaseCatalog const & index, CatalogVector const & dataCatalogs);
38 
40  InputArchive(InputArchive const & other);
41 
43  InputArchive & operator=(InputArchive const & other);
44 
45  ~InputArchive();
46 
52  PTR(Persistable) get(int id) const;
53 
55  template <typename T>
56  PTR(T) get(int id) const {
57  PTR(T) p = boost::dynamic_pointer_cast<T>(get(id));
58  LSST_ARCHIVE_ASSERT(p || id == 0);
59  return p;
60  }
61 
63  Map const & getAll() const;
64 
70  static InputArchive readFits(fits::Fits & fitsfile);
71 
72 private:
73 
74  class Impl;
75 
76  InputArchive(PTR(Impl) impl);
77 
78  PTR(Impl) _impl;
79 };
80 
81 }}}} // namespace lsst::afw::table::io
82 
83 #endif // !AFW_TABLE_IO_InputArchive_h_INCLUDED
#define PTR(...)
Definition: base.h:41
CatalogT< BaseRecord > BaseCatalog
Definition: fwd.h:61
A custom container class for records, based on std::vector.
Definition: Catalog.h:94
static InputArchive readFits(fits::Fits &fitsfile)
Read an object from an already open FITS object.
A simple struct that combines the two arguments that must be passed to most cfitsio routines and cont...
Definition: fits.h:194
A base class for objects that can be persisted via afw::table::io Archive classes.
Definition: Persistable.h:74
Map const & getAll() const
Load and return all objects in the archive.
InputArchive()
Construct an empty InputArchive that contains no objects.
boost::shared_ptr< Impl > _impl
Definition: InputArchive.h:78
InputArchive & operator=(InputArchive const &other)
Assignment. Does not deep-copy loaded Persistables.
A vector of catalogs used by Persistable.
Definition: CatalogVector.h:26
int id
Definition: CR.cc:151
#define LSST_ARCHIVE_ASSERT(EXPR)
An assertion macro used to validate the structure of an InputArchive.
Definition: Persistable.h:47
std::map< int, boost::shared_ptr< Persistable > > Map
Definition: InputArchive.h:31
boost::shared_ptr< Persistable > get(int id) const
Load the Persistable with the given ID and return it.
A multi-catalog archive object used to load table::io::Persistable objects.
Definition: InputArchive.h:28