LSSTApplications  11.0-13-gbb96280,12.1.rc1,12.1.rc1+1,12.1.rc1+2,12.1.rc1+5,12.1.rc1+8,12.1.rc1-1-g06d7636+1,12.1.rc1-1-g253890b+5,12.1.rc1-1-g3d31b68+7,12.1.rc1-1-g3db6b75+1,12.1.rc1-1-g5c1385a+3,12.1.rc1-1-g83b2247,12.1.rc1-1-g90cb4cf+6,12.1.rc1-1-g91da24b+3,12.1.rc1-2-g3521f8a,12.1.rc1-2-g39433dd+4,12.1.rc1-2-g486411b+2,12.1.rc1-2-g4c2be76,12.1.rc1-2-gc9c0491,12.1.rc1-2-gda2cd4f+6,12.1.rc1-3-g3391c73+2,12.1.rc1-3-g8c1bd6c+1,12.1.rc1-3-gcf4b6cb+2,12.1.rc1-4-g057223e+1,12.1.rc1-4-g19ed13b+2,12.1.rc1-4-g30492a7
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 = std::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
CatalogT< BaseRecord > BaseCatalog
Definition: fwd.h:61
A custom container class for records, based on std::vector.
Definition: Catalog.h:95
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:201
A base class for objects that can be persisted via afw::table::io Archive classes.
Definition: Persistable.h:72
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
#define LSST_ARCHIVE_ASSERT(EXPR)
An assertion macro used to validate the structure of an InputArchive.
Definition: Persistable.h:45
#define PTR(...)
Definition: base.h:41
int id
Definition: CR.cc:157
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