LSST Applications g06d8191974+de063e15a7,g180d380827+d0b6459378,g2079a07aa2+86d27d4dc4,g2305ad1205+f1ae3263cc,g29320951ab+5752d78b6e,g2bbee38e9b+85cf0a37e7,g337abbeb29+85cf0a37e7,g33d1c0ed96+85cf0a37e7,g3a166c0a6a+85cf0a37e7,g3ddfee87b4+b5254b9343,g48712c4677+9ea88d309d,g487adcacf7+05f7dba17f,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+48904e3942,g64a986408d+de063e15a7,g858d7b2824+de063e15a7,g864b0138d7+33ab2bc355,g8a8a8dda67+585e252eca,g99cad8db69+4508353287,g9c22b2923f+53520f316c,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,gb0e22166c9+60f28cb32d,gba4ed39666+c2a2e4ac27,gbb8dafda3b+ccb7f83a87,gc120e1dc64+6caf640b9b,gc28159a63d+85cf0a37e7,gc3e9b769f7+548c5e05a3,gcf0d15dbbd+b5254b9343,gdaeeff99f8+f9a426f77a,ge6526c86ff+515b6c9330,ge79ae78c31+85cf0a37e7,gee10cc3b42+585e252eca,gff1a9f87cc+de063e15a7,w.2024.17
LSST Data Management Base Package
Loading...
Searching...
No Matches
DetectorCollection.h
Go to the documentation of this file.
1/*
2 * Developed for the LSST Data Management System.
3 * This product includes software developed by the LSST Project
4 * (https://www.lsst.org).
5 * See the COPYRIGHT file at the top-level directory of this distribution
6 * for details of code ownership.
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
22#ifndef LSST_AFW_CAMERAGEOM_DETECTORCOLLECTION_H
23#define LSST_AFW_CAMERAGEOM_DETECTORCOLLECTION_H
24
25#include <map>
26#include <string>
27#include <memory>
28
29#include "lsst/geom/Box.h"
32
33namespace lsst {
34namespace afw {
35namespace cameraGeom {
36
48template <typename T>
50public:
51
55
56 virtual ~DetectorCollectionBase() noexcept = 0;
57
59 NameMap const & getNameMap() const noexcept { return _nameDict; }
60
62 IdMap const & getIdMap() const noexcept { return _idDict; }
63
67 std::size_t size() const noexcept { return _idDict.size(); }
68
72 bool empty() const noexcept { return _idDict.empty(); }
73
80 std::shared_ptr<T> operator[](std::string const & name) const;
81
88 std::shared_ptr<T> operator[](int id) const;
89
99 std::shared_ptr<T> get(std::string const & name, std::shared_ptr<T> def=nullptr) const;
100
110 std::shared_ptr<T> get(int id, std::shared_ptr<T> def=nullptr) const;
111
112protected:
113
114 explicit DetectorCollectionBase(List const & detectorList);
115
116 DetectorCollectionBase() noexcept = default;
117
120
121 DetectorCollectionBase & operator=(DetectorCollectionBase const &) = default;
123
135 void add(std::shared_ptr<T> detector);
136
137 void remove(std::string const & name);
138 void remove(int id);
139
140private:
141 NameMap _nameDict; //< map keyed on name
142 IdMap _idDict; //< map keyed on id
143};
144
145
150 public table::io::PersistableFacade<DetectorCollection>,
151 public table::io::Persistable {
152public:
153
154 DetectorCollection(List const & list);
155
156 virtual ~DetectorCollection() noexcept;
157
159 lsst::geom::Box2D const & getFpBBox() const noexcept { return _fpBBox; }
160
161 // DetectorCollection is immutable, so it cannot be moveable. It is also
162 // always held by shared_ptr, so there is no good reason to copy it.
165
166 // DetectorCollection is immutable, so it cannot be assignable.
169
171 bool isPersistable() const noexcept override {
172 return true;
173 }
174
175protected:
176
178
179 std::string getPersistenceName() const override;
180
181 std::string getPythonModule() const override;
182
183 void write(OutputArchiveHandle& handle) const override;
184
185private:
186
187 class Factory;
188
189 lsst::geom::Box2D _fpBBox; //< bounding box of collection
190};
191
192} // namespace cameraGeom
193} // namespace afw
194} // namespace lsst
195
196
197#endif // LSST_AFW_CAMERAGEOM_DETECTORCOLLECTION_H
An abstract base class for collections of Detectors and specific subclasses thereof.
std::size_t size() const noexcept
Get the number of detectors.
std::shared_ptr< T > operator[](std::string const &name) const
Implement the [name] operator.
IdMap const & getIdMap() const noexcept
Get a map keyed and ordered by ID.
NameMap const & getNameMap() const noexcept
Get a map keyed and ordered by name.
std::shared_ptr< T > get(std::string const &name, std::shared_ptr< T > def=nullptr) const
Retrieve a detector by name, or fall back to a default.
void add(std::shared_ptr< T > detector)
Add a detector to the collection.
bool empty() const noexcept
Determine if the collection contains any detectors.
An immutable collection of Detectors that can be accessed by name or ID.
DetectorCollection(DetectorCollection const &)=delete
bool isPersistable() const noexcept override
DetectorCollections are always persistable.
DetectorCollection & operator=(DetectorCollection &&)=delete
DetectorCollection(DetectorCollection &&)=delete
DetectorCollection & operator=(DetectorCollection const &)=delete
A representation of a detector in a mosaic camera.
Definition Detector.h:185
A vector of catalogs used by Persistable.
A multi-catalog archive object used to load table::io::Persistable objects.
A floating-point coordinate rectangle geometry.
Definition Box.h:413
T empty(T... args)
STL namespace.
T size(T... args)