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.cc
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
27
28namespace lsst {
29namespace afw {
30namespace cameraGeom {
31
32template <typename T>
34
35template <typename T>
36std::shared_ptr<T> DetectorCollectionBase<T>::operator[](std::string const & name) const {
37 auto det = get(name);
38 if (det == nullptr) {
40 (boost::format("Detector with name %s not found") % name).str());
41 }
42 return det;
43}
44
45template <typename T>
47 auto det = get(id);
48 if (det == nullptr) {
50 (boost::format("Detector with ID %s not found") % id).str());
51 }
52 return det;
53}
54
55template <typename T>
57 auto i = _nameDict.find(name);
58 if (i == _nameDict.end()) {
59 return def;
60 }
61 return i->second;
62}
63
64template <typename T>
66 auto i = _idDict.find(id);
67 if (i == _idDict.end()) {
68 return def;
69 }
70 return i->second;
71}
72
73template <typename T>
75 for (auto const & detector : detectorList) {
76 _nameDict[detector->getName()] = detector;
77 _idDict[detector->getId()] = detector;
78 }
79
80 if (_idDict.size() < detectorList.size()) {
81 throw LSST_EXCEPT(pex::exceptions::RuntimeError, "Detector IDs are not unique");
82 }
83 if (_nameDict.size() < detectorList.size()) {
84 throw LSST_EXCEPT(pex::exceptions::RuntimeError, "Detector names are not unique");
85 }
86}
87
88template <typename T>
90 auto idIter = _idDict.find(detector->getId());
91 auto nameIter = _nameDict.find(detector->getName());
92 if (idIter == _idDict.end()) {
93 if (nameIter == _nameDict.end()) {
94 try {
95 _idDict.emplace(detector->getId(), detector);
96 _nameDict.emplace(detector->getName(), detector);
97 } catch (...) {
98 _idDict.clear();
99 _nameDict.clear();
100 throw;
101 }
102 } else {
103 throw LSST_EXCEPT(
105 (boost::format("Detector name %s is not unique.") % detector->getName()).str()
106 );
107 }
108 } else {
109 if (nameIter == _nameDict.end()) {
112 (boost::format("Detector ID %s is not unique.") % detector->getId()).str()
113 );
114 } else {
115 if (nameIter->second != detector) {
116 assert(idIter->second != detector);
117 throw LSST_EXCEPT(
119 (boost::format("Detector name %s and ID %s are not unique.") % detector->getName()
120 % detector->getId()).str()
121 );
122 }
123 // detector is already present; do nothing
124 }
125 }
126}
127
128template <typename T>
130 auto nameIter = _nameDict.find(name);
131 if (nameIter == _nameDict.end()) {
132 throw LSST_EXCEPT(
134 (boost::format("Detector with name %s not found.") % name).str()
135 );
136 }
137 auto idIter = _idDict.find(nameIter->second->getId());
138 assert(idIter != _idDict.end());
139 _nameDict.erase(nameIter);
140 _idDict.erase(idIter);
141}
142
143template <typename T>
145 auto idIter = _idDict.find(id);
146 if (idIter == _idDict.end()) {
147 throw LSST_EXCEPT(
149 (boost::format("Detector with ID %s not found.") % id).str()
150 );
151 }
152 auto nameIter = _nameDict.find(idIter->second->getName());
153 assert(nameIter != _nameDict.end());
154 _nameDict.erase(nameIter);
155 _idDict.erase(idIter);
156}
157
160
161namespace {
162
163class PersistenceHelper {
164public:
165
166 static PersistenceHelper const & get() {
167 static PersistenceHelper const instance;
168 return instance;
169 }
170
171 table::Schema schema;
172 table::Key<int> detector;
173
174 DetectorCollection::List makeDetectorList(
175 table::io::InputArchive const & archive,
176 table::io::CatalogVector const & catalogs
177 ) const {
178 LSST_ARCHIVE_ASSERT(catalogs.size() >= 1u);
179 LSST_ARCHIVE_ASSERT(catalogs.front().getSchema() == schema);
181 result.reserve(catalogs.front().size());
182 for (auto const & record : catalogs.front()) {
183 int archiveId = record.get(detector);
184 result.push_back(archive.get<Detector>(archiveId));
185 }
186 return result;
187 }
188
189private:
190
191 PersistenceHelper() :
192 schema(),
193 detector(schema.addField<int>("detector", "archive ID of Detector in a DetectorCollection"))
194 {}
195
196 PersistenceHelper(PersistenceHelper const &) = delete;
197 PersistenceHelper(PersistenceHelper &&) = delete;
198
199 PersistenceHelper & operator=(PersistenceHelper const &) = delete;
200 PersistenceHelper & operator=(PersistenceHelper &&) = delete;
201
202};
203
204} // anonymous
205
206
208 DetectorCollectionBase<Detector const>(detectorList)
209{
210 for (auto const & detector : detectorList) {
211 for (auto const & corner : detector->getCorners(FOCAL_PLANE)) {
212 _fpBBox.include(corner);
213 }
214 }
215}
216
218public:
219
220 Factory() : table::io::PersistableFactory("DetectorCollection") {}
221
223 CatalogVector const& catalogs) const override {
224 // can't use make_shared because ctor is protected
225 return std::shared_ptr<DetectorCollection>(new DetectorCollection(archive, catalogs));
226 }
227
228 static Factory const registration;
229};
230
232
233
235 table::io::InputArchive const & archive,
236 table::io::CatalogVector const & catalogs
237) : DetectorCollection(PersistenceHelper::get().makeDetectorList(archive, catalogs))
238{}
239
240DetectorCollection::~DetectorCollection() noexcept = default;
241
242std::string DetectorCollection::getPersistenceName() const {
243 return "DetectorCollection";
244}
245
247 return "lsst.afw.cameraGeom";
248}
249
251 auto const & keys = PersistenceHelper::get();
252 auto cat = handle.makeCatalog(keys.schema);
253 for (auto const & pair : getIdMap()) {
254 auto record = cat.addNew();
255 record->set(keys.detector, handle.put(pair.second));
256 }
257 handle.saveCatalog(cat);
258}
259
260} // namespace cameraGeom
261
262namespace table {
263namespace io {
264
265template class PersistableFacade<cameraGeom::DetectorCollection>;
266
267} // namespace io
268} // namespace table
269
270} // namespace afw
271} // namespace lsst
py::object result
Definition _schema.cc:429
table::Key< int > detector
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48
#define LSST_ARCHIVE_ASSERT(EXPR)
An assertion macro used to validate the structure of an InputArchive.
Definition Persistable.h:48
table::Schema schema
Definition python.h:134
std::shared_ptr< Persistable > read(InputArchive const &archive, CatalogVector const &catalogs) const override
Construct a new object from the given InputArchive and vector of catalogs.
An abstract base class for collections of Detectors and specific subclasses thereof.
std::vector< std::shared_ptr< T > > List
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.
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.
An immutable collection of Detectors that can be accessed by name or ID.
std::string getPythonModule() const override
Return the fully-qualified Python module that should be imported to guarantee that its factory is reg...
void write(OutputArchiveHandle &handle) const override
Write the object to one or more catalogs.
A representation of a detector in a mosaic camera.
Definition Detector.h:185
std::shared_ptr< RecordT > addNew()
Create a new record, add it to the end of the catalog, and return a pointer to it.
Definition Catalog.h:489
A vector of catalogs used by Persistable.
A multi-catalog archive object used to load table::io::Persistable objects.
An object passed to Persistable::write to allow it to persist itself.
void saveCatalog(BaseCatalog const &catalog)
Save a catalog in the archive.
BaseCatalog makeCatalog(Schema const &schema)
Return a new, empty catalog with the given schema.
int put(Persistable const *obj, bool permissive=false)
Save an object to the archive and return a unique ID that can be used to retrieve it from an InputArc...
A base class for factory classes used to reconstruct objects from records.
void include(Point2D const &point) noexcept
Expand this to ensure that this->contains(point).
Definition Box.cc:380
Reports attempts to access elements using an invalid key.
Definition Runtime.h:151
Reports errors that are due to events beyond the control of the program.
Definition Runtime.h:104
STL namespace.
T size(T... args)