LSST Applications  21.0.0+04719a4bac,21.0.0-1-ga51b5d4+4b710797af,21.0.0-1-gfc31b0f+3b24369756,21.0.0-10-g2408eff+50e97f2f47,21.0.0-10-g560fb7b+0803ad37c5,21.0.0-10-g5daeb2b+f9b8dc6d5a,21.0.0-10-g8d1d15d+77a6b82ebf,21.0.0-10-gcf60f90+c961be884d,21.0.0-11-g25eff31+7692554667,21.0.0-17-g6590b197+a14a01c114,21.0.0-2-g103fe59+b79afc2051,21.0.0-2-g1367e85+1003a3501c,21.0.0-2-g45278ab+04719a4bac,21.0.0-2-g5242d73+1003a3501c,21.0.0-2-g7f82c8f+c2a1919b98,21.0.0-2-g8f08a60+fd0b970de5,21.0.0-2-ga326454+c2a1919b98,21.0.0-2-gde069b7+ca45a81b40,21.0.0-2-gecfae73+afcaaec585,21.0.0-2-gfc62afb+1003a3501c,21.0.0-21-g5d80ea29e+5e3c9a3766,21.0.0-3-g357aad2+c67f36f878,21.0.0-3-g4be5c26+1003a3501c,21.0.0-3-g65f322c+02b1f88459,21.0.0-3-g7d9da8d+3b24369756,21.0.0-3-ge02ed75+a423c2ae7a,21.0.0-4-g591bb35+a423c2ae7a,21.0.0-4-g65b4814+0803ad37c5,21.0.0-4-g88306b8+199c7497e5,21.0.0-4-gccdca77+a631590478,21.0.0-4-ge8a399c+b923ff878e,21.0.0-5-gd00fb1e+d8b1e95daa,21.0.0-53-ge728e5d5+3cb64fea8e,21.0.0-6-g2d4f3f3+04719a4bac,21.0.0-7-g04766d7+8d320c19d5,21.0.0-7-g98eecf7+205433fbda,21.0.0-9-g39e06b5+a423c2ae7a,master-gac4afde19b+a423c2ae7a,w.2021.11
LSST Data Management Base Package
ApCorrMap.cc
Go to the documentation of this file.
1 // -*- LSST-C++ -*-
2 /*
3  * LSST Data Management System
4  * Copyright 2008-2014 LSST Corporation.
5  *
6  * This product includes software developed by the
7  * LSST Project (http://www.lsst.org/).
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the LSST License Statement and
20  * the GNU General Public License along with this program. If not,
21  * see <http://www.lsstcorp.org/LegalNotices/>.
22  */
23 
24 #include <memory>
25 
31 
32 namespace lsst {
33 namespace afw {
34 
37 
38 namespace image {
39 
40 // Even though this static const member is set in the header, it needs to be declared here if we need
41 // to take its address (and Swig might).
42 std::size_t const ApCorrMap::MAX_NAME_LENGTH;
43 
44 std::shared_ptr<math::BoundedField> const ApCorrMap::operator[](std::string const& name) const {
45  Iterator i = _internal.find(name);
46  if (i == _internal.end()) {
48  (boost::format("Aperture correction with name '%s' not found") % name).str());
49  }
50  return i->second;
51 }
52 
53 std::shared_ptr<math::BoundedField> const ApCorrMap::get(std::string const& name) const {
54  Iterator i = _internal.find(name);
55  if (i == _internal.end()) {
57  }
58  return i->second;
59 }
60 
62  if (name.size() > MAX_NAME_LENGTH) {
63  throw LSST_EXCEPT(
65  (boost::format("Aperture correction name '%s' exceeds size limit of %d characters") % name %
66  MAX_NAME_LENGTH)
67  .str());
68  }
69  _internal.insert(std::make_pair(name, field));
70 }
71 
72 namespace {
73 
74 struct PersistenceHelper {
75  table::Schema schema;
76  table::Key<std::string> name;
77  table::Key<int> field;
78 
79  static PersistenceHelper const& get() {
80  static PersistenceHelper const instance;
81  return instance;
82  }
83 
84 private:
85  PersistenceHelper()
86  : schema(),
87  name(schema.addField<std::string>("name", "name of the aperture correction",
88  ApCorrMap::MAX_NAME_LENGTH)),
89  field(schema.addField<int>("field", "archive ID of the BoundedField object")) {}
90 };
91 
92 class ApCorrMapFactory : public table::io::PersistableFactory {
93 public:
94  std::shared_ptr<table::io::Persistable> read(InputArchive const& archive,
95  CatalogVector const& catalogs) const override {
96  PersistenceHelper const& keys = PersistenceHelper::get();
97  LSST_ARCHIVE_ASSERT(catalogs.size() == 1u);
98  LSST_ARCHIVE_ASSERT(catalogs.front().getSchema() == keys.schema);
99  std::shared_ptr<ApCorrMap> result = std::make_shared<ApCorrMap>();
100  for (table::BaseCatalog::const_iterator i = catalogs.front().begin(); i != catalogs.front().end();
101  ++i) {
102  result->set(i->get(keys.name), archive.get<math::BoundedField>(i->get(keys.field)));
103  }
104  return result;
105  }
106 
107  ApCorrMapFactory(std::string const& name) : afw::table::io::PersistableFactory(name) {}
108 };
109 
110 std::string getApCorrMapPersistenceName() { return "ApCorrMap"; }
111 
112 ApCorrMapFactory registration(getApCorrMapPersistenceName());
113 
114 } // namespace
115 
116 bool ApCorrMap::isPersistable() const noexcept {
117  for (Iterator i = begin(); i != end(); ++i) {
118  if (!i->second->isPersistable()) return false;
119  }
120  return true;
121 }
122 
123 std::string ApCorrMap::getPersistenceName() const { return getApCorrMapPersistenceName(); }
124 
125 std::string ApCorrMap::getPythonModule() const { return "lsst.afw.image"; }
126 
127 void ApCorrMap::write(OutputArchiveHandle& handle) const {
128  PersistenceHelper const& keys = PersistenceHelper::get();
129  table::BaseCatalog catalog = handle.makeCatalog(keys.schema);
130  for (Iterator i = begin(); i != end(); ++i) {
131  std::shared_ptr<table::BaseRecord> record = catalog.addNew();
132  record->set(keys.name, i->first);
133  record->set(keys.field, handle.put(i->second));
134  }
135  handle.saveCatalog(catalog);
136 }
137 
139  Internal replacement;
140  for (Iterator i = begin(); i != end(); ++i) {
141  replacement[i->first] = (*i->second) * scale;
142  }
143  _internal = replacement;
144  return *this;
145 }
146 
147 std::shared_ptr<typehandling::Storable> ApCorrMap::cloneStorable() const {
148  return std::make_unique<ApCorrMap>(*this);
149 }
150 
151 } // namespace image
152 } // namespace afw
153 } // namespace lsst
py::object result
Definition: _schema.cc:430
int end
#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
A thin wrapper around std::map to allow aperture corrections to be attached to Exposures.
Definition: ApCorrMap.h:45
Internal::const_iterator Iterator
Iterator type returned by begin() and end().
Definition: ApCorrMap.h:54
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:485
CatalogIterator< typename Internal::const_iterator > const_iterator
Definition: Catalog.h:111
static std::shared_ptr< T > dynamicCast(std::shared_ptr< Persistable > const &ptr)
Dynamically cast a shared_ptr.
Definition: Persistable.cc:18
Reports attempts to exceed implementation-defined length limits for some classes.
Definition: Runtime.h:76
Reports attempts to access elements using an invalid key.
Definition: Runtime.h:151
daf::base::PropertySet * set
Definition: fits.cc:912
T make_pair(T... args)
def scale(algorithm, min, max=None, frame=None)
Definition: ds9.py:109
Backwards-compatibility support for depersisting the old Calib (FluxMag0/FluxMag0Err) objects.
std::string getPythonModule() const override
std::string getPersistenceName() const override
void write(OutputArchiveHandle &handle) const override
Image< LhsPixelT > & operator*=(Image< LhsPixelT > &lhs, Image< RhsPixelT > const &rhs)
Multiply lhs by Image rhs (i.e. pixel-by-pixel multiplication) where types are different.
Definition: Image.cc:683
FastFinder::Iterator Iterator
Definition: FastFinder.cc:178
def format(config, name=None, writeSourceLine=True, prefix="", verbose=False)
Definition: history.py:174
A base class for image defects.
STL namespace.
table::Key< std::string > name
Definition: ApCorrMap.cc:76
table::Schema schema
Definition: ApCorrMap.cc:75
table::Key< int > field
Definition: ApCorrMap.cc:77