LSST Applications g044012fb7c+6976b5ec80,g04a91732dc+88a5fc122b,g07dc498a13+7e3c5f68a2,g114c6a66ad+09472d7a76,g1409bbee79+7e3c5f68a2,g1a7e361dbc+7e3c5f68a2,g1fd858c14a+3a43eabc0e,g35bb328faa+fcb1d3bbc8,g3bd4b5ce2c+2647bb081c,g4e0f332c67+5d362be553,g53246c7159+fcb1d3bbc8,g5477a8d5ce+b19c77c7ae,g58d0cdf3ff+4a2e102ff8,g60b5630c4e+09472d7a76,g623d845a50+09472d7a76,g6f0c2978f1+fcf1c0bcd6,g71fabbc107+09472d7a76,g75b6c65c88+d0b1dc44cc,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g8852436030+349c7e81d4,g89139ef638+7e3c5f68a2,g9125e01d80+fcb1d3bbc8,g95236ca021+f7a31438ed,g989de1cb63+7e3c5f68a2,g9f33ca652e+f17d666fbc,gaaedd4e678+7e3c5f68a2,gabe3b4be73+1e0a283bba,gb1101e3267+f870f33517,gb58c049af0+f03b321e39,gc99c83e5f0+76d20ab76d,gcf25f946ba+349c7e81d4,gd0fa69b896+f3a65fa83c,gd6cbbdb0b4+c8606af20c,gde0f65d7ad+5bd27d919f,ge278dab8ac+932305ba37,gfba249425e+fcb1d3bbc8,w.2025.07
LSST Data Management Base Package
|
A vector of catalogs used by Persistable. More...
#include <CatalogVector.h>
Public Member Functions | |
BaseCatalog | push_back (BaseCatalog... args) |
BaseCatalog | crbegin (BaseCatalog... args) |
BaseCatalog | erase (BaseCatalog... args) |
BaseCatalog | data (BaseCatalog... args) |
BaseCatalog | insert (BaseCatalog... args) |
BaseCatalog | pop_back (BaseCatalog... args) |
BaseCatalog | shrink_to_fit (BaseCatalog... args) |
BaseCatalog | back (BaseCatalog... args) |
BaseCatalog | end (BaseCatalog... args) |
BaseCatalog | resize (BaseCatalog... args) |
BaseCatalog | emplace_back (BaseCatalog... args) |
BaseCatalog | size (BaseCatalog... args) |
BaseCatalog | cbegin (BaseCatalog... args) |
BaseCatalog | front (BaseCatalog... args) |
BaseCatalog | rbegin (BaseCatalog... args) |
BaseCatalog | crend (BaseCatalog... args) |
BaseCatalog | assign (BaseCatalog... args) |
BaseCatalog | reserve (BaseCatalog... args) |
BaseCatalog | capacity (BaseCatalog... args) |
BaseCatalog | empty (BaseCatalog... args) |
BaseCatalog | cend (BaseCatalog... args) |
BaseCatalog | swap (BaseCatalog... args) |
BaseCatalog | max_size (BaseCatalog... args) |
BaseCatalog | rend (BaseCatalog... args) |
BaseCatalog | get_allocator (BaseCatalog... args) |
BaseCatalog | clear (BaseCatalog... args) |
BaseCatalog | at (BaseCatalog... args) |
BaseCatalog | emplace (BaseCatalog... args) |
BaseCatalog | operator[] (BaseCatalog... args) |
BaseCatalog | begin (BaseCatalog... args) |
Public Attributes | |
BaseCatalog | elements |
STL member. | |
A vector of catalogs used by Persistable.
This should really be thought of as just a typedef, but we can't forward-declare a typedef to a template class, so we use a trivial subclass instead. That may seem like a dirty hack, but it has a huge benefit in keeping compilation times down: it keeps us from needing to include Catalog.h in Persistable.h, which otherwise would pull all of the afw::table headers into the header of any class that wanted to make use of a Persistable subclass.
CatalogVector is also used in such limited circumstances that we don't really have to worry about the fact that std::vector doesn't have a virtual destructor and that we only have default and copy constructors for CatalogVector.
Definition at line 29 of file CatalogVector.h.
|
inherited |
STL member.