LSSTApplications  19.0.0-14-gb0260a2+72efe9b372,20.0.0+7927753e06,20.0.0+8829bf0056,20.0.0+995114c5d2,20.0.0+b6f4b2abd1,20.0.0+bddc4f4cbe,20.0.0-1-g253301a+8829bf0056,20.0.0-1-g2b7511a+0d71a2d77f,20.0.0-1-g5b95a8c+7461dd0434,20.0.0-12-g321c96ea+23efe4bbff,20.0.0-16-gfab17e72e+fdf35455f6,20.0.0-2-g0070d88+ba3ffc8f0b,20.0.0-2-g4dae9ad+ee58a624b3,20.0.0-2-g61b8584+5d3db074ba,20.0.0-2-gb780d76+d529cf1a41,20.0.0-2-ged6426c+226a441f5f,20.0.0-2-gf072044+8829bf0056,20.0.0-2-gf1f7952+ee58a624b3,20.0.0-20-geae50cf+e37fec0aee,20.0.0-25-g3dcad98+544a109665,20.0.0-25-g5eafb0f+ee58a624b3,20.0.0-27-g64178ef+f1f297b00a,20.0.0-3-g4cc78c6+e0676b0dc8,20.0.0-3-g8f21e14+4fd2c12c9a,20.0.0-3-gbd60e8c+187b78b4b8,20.0.0-3-gbecbe05+48431fa087,20.0.0-38-ge4adf513+a12e1f8e37,20.0.0-4-g97dc21a+544a109665,20.0.0-4-gb4befbc+087873070b,20.0.0-4-gf910f65+5d3db074ba,20.0.0-5-gdfe0fee+199202a608,20.0.0-5-gfbfe500+d529cf1a41,20.0.0-6-g64f541c+d529cf1a41,20.0.0-6-g9a5b7a1+a1cd37312e,20.0.0-68-ga3f3dda+5fca18c6a4,20.0.0-9-g4aef684+e18322736b,w.2020.45
LSSTDataManagementBasePackage
Peak.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 #include <typeinfo>
24 
28 
29 namespace lsst {
30 namespace afw {
31 namespace detection {
32 
33 //-----------------------------------------------------------------------------------------------------------
34 //----- PeakFitsWriter ---------------------------------------------------------------------------------
35 //-----------------------------------------------------------------------------------------------------------
36 
37 // A custom FitsWriter for Peak - this just sets the AFW_TYPE key to PEAK, which should ensure
38 // we use PeakFitsReader to read it.
39 
40 namespace {
41 
42 class PeakFitsWriter : public afw::table::io::FitsWriter {
43 public:
44  explicit PeakFitsWriter(Fits* fits, int flags) : afw::table::io::FitsWriter(fits, flags) {}
45 
46 protected:
47  void _writeTable(std::shared_ptr<afw::table::BaseTable const> const& table, std::size_t nRows) override;
48 };
49 
50 void PeakFitsWriter::_writeTable(std::shared_ptr<afw::table::BaseTable const> const& t, std::size_t nRows) {
51  std::shared_ptr<PeakTable const> table = std::dynamic_pointer_cast<PeakTable const>(t);
52  if (!table) {
54  "Cannot use a PeakFitsWriter on a non-Peak table.");
55  }
57  _fits->writeKey("AFW_TYPE", "PEAK", "Tells lsst::afw to load this as a Peak table.");
58 }
59 
60 } // namespace
61 
62 //-----------------------------------------------------------------------------------------------------------
63 //----- PeakFitsReader ---------------------------------------------------------------------------------
64 //-----------------------------------------------------------------------------------------------------------
65 
66 // A custom FitsReader for PeakTable/Record - this gets registered with name SIMPLE, so it should get used
67 // whenever we read a table with AFW_TYPE set to that value.
68 
69 namespace {
70 
71 class PeakFitsReader : public afw::table::io::FitsReader {
72 public:
73  PeakFitsReader() : afw::table::io::FitsReader("PEAK") {}
74 
75  std::shared_ptr<afw::table::BaseTable> makeTable(afw::table::io::FitsSchemaInputMapper& mapper,
77  int ioFlags, bool stripMetadata) const override {
79  table->setMetadata(metadata);
80  return table;
81  }
82 };
83 
84 // registers the reader so FitsReader::make can use it.
85 static PeakFitsReader const peakFitsReader;
86 
87 } // namespace
88 
89 //-----------------------------------------------------------------------------------------------------------
90 //----- PeakTable/Record member function implementations -----------------------------------------------
91 //-----------------------------------------------------------------------------------------------------------
92 
94  return os << (boost::format("%d: (%d,%d) (%.3f,%.3f)") % record.getId() % record.getIx() %
95  record.getIy() % record.getFx() % record.getFy());
96 }
97 
99  typedef std::list<std::weak_ptr<PeakTable> > CachedTableList;
100  static CachedTableList cache;
101  if (!checkSchema(schema)) {
103  "Schema for Peak must contain at least the keys defined by makeMinimalSchema().");
104  }
105  if (forceNewTable) {
107  }
108  CachedTableList::iterator iter = cache.begin();
109  while (iter != cache.end()) {
110  std::shared_ptr<PeakTable> p = iter->lock();
111  if (!p) {
112  iter = cache.erase(iter);
113  } else {
114  if (p->getSchema().compare(schema, afw::table::Schema::IDENTICAL) ==
116  // Move the one we found to the front of the list, so it's easier to find
117  // the same thing repeatedly
118  if (iter != cache.begin()) {
119  cache.splice(cache.begin(), cache, iter);
120  }
121  return p;
122  }
123  ++iter;
124  }
125  }
126  // No match: we create a new table and put it in the cache
128  cache.push_front(newTable);
129  return newTable;
130 }
131 
134  : afw::table::BaseTable(schema), _idFactory(idFactory) {}
135 
137  : afw::table::BaseTable(other),
138  _idFactory(other._idFactory ? other._idFactory->clone() : other._idFactory) {}
139 // Delegate to copy-constructor for backwards-compatibility
141 
142 PeakTable::~PeakTable() = default;
143 
144 PeakTable::MinimalSchema::MinimalSchema() {
145  id = schema.addField<afw::table::RecordId>("id", "unique ID");
146  fx = schema.addField<float>("f_x", "subpixel column position", "pixel");
147  fy = schema.addField<float>("f_y", "subpixel row position", "pixel");
148  ix = schema.addField<int>("i_x", "column position of highest pixel", "pixel");
149  iy = schema.addField<int>("i_y", "row position of highest pixel", "pixel");
150  peakValue = schema.addField<float>("peakValue", "value of [smoothed] image at peak position", "count");
151 }
152 
153 PeakTable::MinimalSchema& PeakTable::getMinimalSchema() {
154  static MinimalSchema it;
155  return it;
156 }
157 
158 std::shared_ptr<afw::table::io::FitsWriter> PeakTable::makeFitsWriter(fits::Fits* fitsfile, int flags) const {
159  return std::make_shared<PeakFitsWriter>(fitsfile, flags);
160 }
161 
163  return std::shared_ptr<PeakTable>(new PeakTable(*this));
164 }
165 
167  auto record = constructRecord<PeakRecord>();
168  if (getIdFactory()) record->setId((*getIdFactory())());
169  return record;
170 }
171 
172 } // namespace detection
173 
174 namespace table {
175 
176 template class CatalogT<afw::detection::PeakRecord>;
177 template class CatalogT<afw::detection::PeakRecord const>;
178 } // namespace table
179 } // namespace afw
180 } // namespace lsst
schema
table::Schema schema
Definition: Amplifier.cc:115
lsst::afw::detection::operator<<
std::ostream & operator<<(std::ostream &os, PeakRecord const &record)
Definition: Peak.cc:93
lsst::afw::detection::PeakTable::_clone
std::shared_ptr< afw::table::BaseTable > _clone() const override
Clone implementation with noncovariant return types.
Definition: Peak.cc:162
std::shared_ptr
STL class.
std::list
STL class.
lsst::afw::detection::PeakRecord
Record class that represents a peak in a Footprint.
Definition: Peak.h:42
lsst::afw::detection::PeakTable::~PeakTable
~PeakTable() override
lsst::afw::table::IdFactory::makeSimple
static std::shared_ptr< IdFactory > makeSimple()
Return a simple IdFactory that simply counts from 1.
Definition: IdFactory.cc:70
lsst::afw
Definition: imageAlgorithm.dox:1
lsst::afw::detection::PeakRecord::getId
afw::table::RecordId getId() const
Convenience accessors for the keys in the minimal schema.
Definition: Peak.h:227
lsst::afw::table::Schema
Defines the fields and offsets for a table.
Definition: Schema.h:50
lsst.pex.config.history.format
def format(config, name=None, writeSourceLine=True, prefix="", verbose=False)
Definition: history.py:174
lsst::afw::detection::PeakRecord::getIy
int getIy() const
Definition: Peak.h:231
fits
Fits * fits
Definition: FitsWriter.cc:90
lsst::afw::detection::PeakTable::make
static std::shared_ptr< PeakTable > make(afw::table::Schema const &schema, bool forceNew=false)
Obtain a table that can be used to create records with given schema.
Definition: Peak.cc:98
std::ostream
STL class.
lsst::afw::detection::PeakTable::getIdFactory
std::shared_ptr< afw::table::IdFactory > getIdFactory()
Return the object that generates IDs for the table (may be null).
Definition: Peak.h:150
other
ItemVariant const * other
Definition: Schema.cc:56
lsst.pex::exceptions::LogicError
Reports errors in the logical structure of the program.
Definition: Runtime.h:46
std::int64_t
lsst::afw::table::Schema::IDENTICAL
@ IDENTICAL
Everything is the same.
Definition: Schema.h:71
lsst
A base class for image defects.
Definition: imageAlgorithm.dox:1
LSST_EXCEPT
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
lsst::afw::detection::PeakRecord::getFx
float getFx() const
Definition: Peak.h:235
lsst::afw::detection::PeakTable::checkSchema
static bool checkSchema(afw::table::Schema const &other)
Return true if the given schema is a valid PeakTable schema.
Definition: Peak.h:145
os
std::ostream * os
Definition: Schema.cc:746
lsst::afw::table::io::FitsWriter::_writeTable
virtual void _writeTable(std::shared_ptr< BaseTable const > const &table, std::size_t nRows)
Write a table and its schema.
Definition: FitsWriter.cc:103
Peak.h
lsst.pex::exceptions::InvalidParameterError
Reports invalid arguments.
Definition: Runtime.h:66
mapper
SchemaMapper * mapper
Definition: SchemaMapper.cc:78
lsst::afw::detection::PeakTable::_makeRecord
std::shared_ptr< afw::table::BaseRecord > _makeRecord() override
Default-construct an associated record (protected implementation).
Definition: Peak.cc:166
lsst::afw::detection::PeakTable
Table class for Peaks in Footprints.
Definition: Peak.h:102
lsst::afw::detection::PeakTable::PeakTable
PeakTable(afw::table::Schema const &schema, std::shared_ptr< afw::table::IdFactory > const &idFactory)
Definition: Peak.cc:132
lsst::afw::detection::PeakRecord::getIx
int getIx() const
Definition: Peak.h:230
std::size_t
FitsWriter.h
lsst::afw::image.slicing.clone
clone
Definition: slicing.py:257
astshim.fitsChanContinued.iter
def iter(self)
Definition: fitsChanContinued.py:88
Access.h
lsst::afw::detection::PeakRecord::getFy
float getFy() const
Definition: Peak.h:236