LSSTApplications  18.1.0
LSSTDataManagementBasePackage
ArchiveIndexSchema.h
Go to the documentation of this file.
1 // -*- lsst-c++ -*-
2 #ifndef AFW_TABLE_IO_ArchiveInputSchema_h_INCLUDED
3 #define AFW_TABLE_IO_ArchiveInputSchema_h_INCLUDED
4 
5 /*
6  * Private singleton shared by the two archive classes; should only be included in their definition
7  * source files.
8  */
9 
10 #include "lsst/base.h"
11 #include "lsst/afw/table/Schema.h"
12 
13 namespace lsst {
14 namespace afw {
15 namespace table {
16 namespace io {
17 
35 struct ArchiveIndexSchema final {
38  Key<int> catArchive; // 'cat.archive' in schema
39  Key<int> catPersistable; // 'cat.persistable' in schema
41  Key<int> nRows; // 'nrows' in schema
44 
45  static int const MAX_NAME_LENGTH = 64;
46  static int const MAX_MODULE_LENGTH = 64;
47 
52  static constexpr int const NO_CATALOGS_SAVED = -1;
53 
55  static ArchiveIndexSchema const& get();
56 
57  // No copying
58  ArchiveIndexSchema(const ArchiveIndexSchema&) = delete;
60 
61  // No moving
64 
65 private:
67 };
68 } // namespace io
69 } // namespace table
70 } // namespace afw
71 } // namespace lsst
72 
73 #endif // !AFW_TABLE_IO_ArchiveInputSchema_h_INCLUDED
Defines the fields and offsets for a table.
Definition: Schema.h:50
Basic LSST definitions.
Schema for the index catalog that specifies where objects are stored in the data catalogs.
ArchiveIndexSchema & operator=(const ArchiveIndexSchema &)=delete
static constexpr int const NO_CATALOGS_SAVED
Special value used for catArchive, catPersistable, and row0 when an object with no state is saved...
A base class for image defects.