LSST Applications g0265f82a02+0e5473021a,g02d81e74bb+0dd8ce4237,g1470d8bcf6+3ea6592b6f,g2079a07aa2+86d27d4dc4,g2305ad1205+5ca4c0b359,g295015adf3+d10818ec9d,g2a9a014e59+6f9be1b9cd,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g3ddfee87b4+703ba97ebf,g487adcacf7+4fa16da234,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+ffa42b374e,g5a732f18d5+53520f316c,g64a986408d+0dd8ce4237,g858d7b2824+0dd8ce4237,g8a8a8dda67+585e252eca,g99cad8db69+d39438377f,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,ga8c6da7877+f1d96605c8,gb0e22166c9+60f28cb32d,gb6a65358fc+0e5473021a,gba4ed39666+c2a2e4ac27,gbb8dafda3b+e5339d463f,gc120e1dc64+da31e9920e,gc28159a63d+0e5473021a,gcf0d15dbbd+703ba97ebf,gdaeeff99f8+f9a426f77a,ge6526c86ff+889fc9d533,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gf18bd8381d+7268b93478,gff1a9f87cc+0dd8ce4237,w.2024.16
LSST Data Management Base Package
Loading...
Searching...
No Matches
Classes | Public Types | Public Member Functions | Static Public Member Functions | Protected Types | Protected Member Functions | List of all members
lsst::afw::cameraGeom::DetectorCollection Class Reference

An immutable collection of Detectors that can be accessed by name or ID. More...

#include <DetectorCollection.h>

Inheritance diagram for lsst::afw::cameraGeom::DetectorCollection:
lsst::afw::cameraGeom::DetectorCollectionBase< T > lsst::afw::table::io::PersistableFacade< DetectorCollection > lsst::afw::table::io::Persistable lsst::afw::cameraGeom::Camera

Classes

class  Factory
 

Public Types

using NameMap = std::unordered_map<std::string, std::shared_ptr<T>>
 
using IdMap = std::map<int, std::shared_ptr<T>>
 
using List = std::vector<std::shared_ptr<T>>
 

Public Member Functions

 DetectorCollection (List const &list)
 
virtual ~DetectorCollection () noexcept
 
lsst::geom::Box2D const & getFpBBox () const noexcept
 Return a focal plane bounding box that encompasses all detectors.
 
 DetectorCollection (DetectorCollection const &)=delete
 
 DetectorCollection (DetectorCollection &&)=delete
 
DetectorCollectionoperator= (DetectorCollection const &)=delete
 
DetectorCollectionoperator= (DetectorCollection &&)=delete
 
bool isPersistable () const noexcept override
 DetectorCollections are always persistable.
 
NameMap const & getNameMap () const noexcept
 Get a map keyed and ordered by name.
 
IdMap const & getIdMap () const noexcept
 Get a map keyed and ordered by ID.
 
std::size_t size () const noexcept
 Get the number of detectors.
 
bool empty () const noexcept
 Determine if the collection contains any detectors.
 
std::shared_ptr< T > operator[] (std::string const &name) const
 Implement the [name] operator.
 
std::shared_ptr< T > operator[] (int id) const
 Implement the [id] operator.
 
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.
 
std::shared_ptr< T > get (int id, std::shared_ptr< T > def=nullptr) const
 Retrieve a detector by ID, or fall back to a default.
 
void writeFits (std::string const &fileName, std::string const &mode="w") const
 Write the object to a regular FITS file.
 
void writeFits (fits::MemFileManager &manager, std::string const &mode="w") const
 Write the object to a FITS image in memory.
 
void writeFits (fits::Fits &fitsfile) const
 Write the object to an already-open FITS object.
 

Static Public Member Functions

static std::shared_ptr< DetectorCollectionreadFits (fits::Fits &fitsfile)
 Read an object from an already open FITS object.
 
static std::shared_ptr< DetectorCollectionreadFits (std::string const &fileName, int hdu=fits::DEFAULT_HDU)
 Read an object from a regular FITS file.
 
static std::shared_ptr< DetectorCollectionreadFits (fits::MemFileManager &manager, int hdu=fits::DEFAULT_HDU)
 Read an object from a FITS file in memory.
 
static std::shared_ptr< DetectorCollectiondynamicCast (std::shared_ptr< Persistable > const &ptr)
 Dynamically cast a shared_ptr.
 

Protected Types

using OutputArchiveHandle = io::OutputArchiveHandle
 

Protected Member Functions

 DetectorCollection (table::io::InputArchive const &archive, table::io::CatalogVector const &catalogs)
 
std::string getPersistenceName () const override
 Return the unique name used to persist this object and look up its factory.
 
std::string getPythonModule () const override
 Return the fully-qualified Python module that should be imported to guarantee that its factory is registered.
 
void write (OutputArchiveHandle &handle) const override
 Write the object to one or more catalogs.
 
void add (std::shared_ptr< T > detector)
 Add a detector to the collection.
 
void remove (std::string const &name)
 
void remove (int id)
 

Detailed Description

An immutable collection of Detectors that can be accessed by name or ID.

Definition at line 149 of file DetectorCollection.h.

Member Typedef Documentation

◆ IdMap

template<typename T >
using lsst::afw::cameraGeom::DetectorCollectionBase< T >::IdMap = std::map<int, std::shared_ptr<T>>
inherited

Definition at line 53 of file DetectorCollection.h.

◆ List

template<typename T >
using lsst::afw::cameraGeom::DetectorCollectionBase< T >::List = std::vector<std::shared_ptr<T>>
inherited

Definition at line 54 of file DetectorCollection.h.

◆ NameMap

template<typename T >
using lsst::afw::cameraGeom::DetectorCollectionBase< T >::NameMap = std::unordered_map<std::string, std::shared_ptr<T>>
inherited

Definition at line 52 of file DetectorCollection.h.

◆ OutputArchiveHandle

using lsst::afw::table::io::Persistable::OutputArchiveHandle = io::OutputArchiveHandle
protectedinherited

Definition at line 108 of file Persistable.h.

Constructor & Destructor Documentation

◆ DetectorCollection() [1/4]

lsst::afw::cameraGeom::DetectorCollection::DetectorCollection ( List const & list)

Definition at line 207 of file DetectorCollection.cc.

207 :
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}
void include(Point2D const &point) noexcept
Expand this to ensure that this->contains(point).
Definition Box.cc:380

◆ ~DetectorCollection()

lsst::afw::cameraGeom::DetectorCollection::~DetectorCollection ( )
virtualdefaultnoexcept

◆ DetectorCollection() [2/4]

lsst::afw::cameraGeom::DetectorCollection::DetectorCollection ( DetectorCollection const & )
delete

◆ DetectorCollection() [3/4]

lsst::afw::cameraGeom::DetectorCollection::DetectorCollection ( DetectorCollection && )
delete

◆ DetectorCollection() [4/4]

lsst::afw::cameraGeom::DetectorCollection::DetectorCollection ( table::io::InputArchive const & archive,
table::io::CatalogVector const & catalogs )
protected

Definition at line 234 of file DetectorCollection.cc.

237 : DetectorCollection(PersistenceHelper::get().makeDetectorList(archive, catalogs))
238{}

Member Function Documentation

◆ add()

template<typename T >
void lsst::afw::cameraGeom::DetectorCollectionBase< T >::add ( std::shared_ptr< T > detector)
protectedinherited

Add a detector to the collection.

Parameters
[in]detectorNew detector to add to the collection.
Exceptions
pex::exceptions::RuntimeErrorThrown if the ID and/or name conflict with those of detectors already in the collection.
Exception Safety
Strong for pex::exceptions::RuntimeError, weak (collection is made empty) otherwise.

Definition at line 89 of file DetectorCollection.cc.

89 {
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(
104 pex::exceptions::RuntimeError,
105 (boost::format("Detector name %s is not unique.") % detector->getName()).str()
106 );
107 }
108 } else {
109 if (nameIter == _nameDict.end()) {
110 throw LSST_EXCEPT(
111 pex::exceptions::RuntimeError,
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(
118 pex::exceptions::RuntimeError,
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}
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48
T clear(T... args)
T emplace(T... args)
T end(T... args)
T find(T... args)

◆ dynamicCast()

Dynamically cast a shared_ptr.

Dynamically cast a shared pointer and raise on failure.

You must provide an explicit template instantiation in the .cc file for each class that inherits from PersistableFacade. Designed to work around RTTI issues on macOS with hidden symbols;

Exceptions
lsst::pex::exceptions::LogicErrorif the cast fails

param[in] ptr The pointer to be cast.

Returns
The cast pointer.
Exceptions
lsst::pex::exceptions::TypeErrorIf the dynamic cast fails.

Definition at line 218 of file Persistable.cc.

◆ empty()

template<typename T >
bool lsst::afw::cameraGeom::DetectorCollectionBase< T >::empty ( ) const
inlinenoexceptinherited

Determine if the collection contains any detectors.

Definition at line 72 of file DetectorCollection.h.

72{ return _idDict.empty(); }
T empty(T... args)

◆ get() [1/2]

template<typename T >
std::shared_ptr< T > lsst::afw::cameraGeom::DetectorCollectionBase< T >::get ( int id,
std::shared_ptr< T > def = nullptr ) const
inherited

Retrieve a detector by ID, or fall back to a default.

Parameters
[in]iddetector id
[in]defdefault detector to return. This defaults to nullptr.
Returns
pointer to detector entry if the entry exists, else return the default value

Definition at line 65 of file DetectorCollection.cc.

65 {
66 auto i = _idDict.find(id);
67 if (i == _idDict.end()) {
68 return def;
69 }
70 return i->second;
71}

◆ get() [2/2]

template<typename T >
std::shared_ptr< T > lsst::afw::cameraGeom::DetectorCollectionBase< T >::get ( std::string const & name,
std::shared_ptr< T > def = nullptr ) const
inherited

Retrieve a detector by name, or fall back to a default.

Parameters
[in]namedetector name
[in]defdefault detector to return. This defaults to nullptr.
Returns
pointer to detector entry if the entry exists, else return the default value

Definition at line 56 of file DetectorCollection.cc.

56 {
57 auto i = _nameDict.find(name);
58 if (i == _nameDict.end()) {
59 return def;
60 }
61 return i->second;
62}

◆ getFpBBox()

lsst::geom::Box2D const & lsst::afw::cameraGeom::DetectorCollection::getFpBBox ( ) const
inlinenoexcept

Return a focal plane bounding box that encompasses all detectors.

Definition at line 159 of file DetectorCollection.h.

159{ return _fpBBox; }

◆ getIdMap()

template<typename T >
IdMap const & lsst::afw::cameraGeom::DetectorCollectionBase< T >::getIdMap ( ) const
inlinenoexceptinherited

Get a map keyed and ordered by ID.

Definition at line 62 of file DetectorCollection.h.

62{ return _idDict; }

◆ getNameMap()

template<typename T >
NameMap const & lsst::afw::cameraGeom::DetectorCollectionBase< T >::getNameMap ( ) const
inlinenoexceptinherited

Get a map keyed and ordered by name.

Definition at line 59 of file DetectorCollection.h.

59{ return _nameDict; }

◆ getPersistenceName()

std::string lsst::afw::cameraGeom::DetectorCollection::getPersistenceName ( ) const
overrideprotectedvirtual

Return the unique name used to persist this object and look up its factory.

Must be less than ArchiveIndexSchema::MAX_NAME_LENGTH characters.

Reimplemented from lsst::afw::table::io::Persistable.

Definition at line 242 of file DetectorCollection.cc.

242 {
243 return "DetectorCollection";
244}

◆ getPythonModule()

std::string lsst::afw::cameraGeom::DetectorCollection::getPythonModule ( ) const
overrideprotectedvirtual

Return the fully-qualified Python module that should be imported to guarantee that its factory is registered.

Must be less than ArchiveIndexSchema::MAX_MODULE_LENGTH characters.

Will be ignored if empty.

Reimplemented from lsst::afw::table::io::Persistable.

Definition at line 246 of file DetectorCollection.cc.

246 {
247 return "lsst.afw.cameraGeom";
248}

◆ isPersistable()

bool lsst::afw::cameraGeom::DetectorCollection::isPersistable ( ) const
inlineoverridevirtualnoexcept

DetectorCollections are always persistable.

Reimplemented from lsst::afw::table::io::Persistable.

Definition at line 171 of file DetectorCollection.h.

171 {
172 return true;
173 }

◆ operator=() [1/2]

DetectorCollection & lsst::afw::cameraGeom::DetectorCollection::operator= ( DetectorCollection && )
delete

◆ operator=() [2/2]

DetectorCollection & lsst::afw::cameraGeom::DetectorCollection::operator= ( DetectorCollection const & )
delete

◆ operator[]() [1/2]

template<typename T >
std::shared_ptr< T > lsst::afw::cameraGeom::DetectorCollectionBase< T >::operator[] ( int id) const
inherited

Implement the [id] operator.

Parameters
[in]iddetector name
Returns
pointer to detector entry

Definition at line 46 of file DetectorCollection.cc.

46 {
47 auto det = get(id);
48 if (det == nullptr) {
49 throw LSST_EXCEPT(pex::exceptions::NotFoundError,
50 (boost::format("Detector with ID %s not found") % id).str());
51 }
52 return det;
53}
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.

◆ operator[]() [2/2]

template<typename T >
std::shared_ptr< T > lsst::afw::cameraGeom::DetectorCollectionBase< T >::operator[] ( std::string const & name) const
inherited

Implement the [name] operator.

Parameters
[in]namedetector name
Returns
pointer to detector entry

Definition at line 36 of file DetectorCollection.cc.

36 {
37 auto det = get(name);
38 if (det == nullptr) {
39 throw LSST_EXCEPT(pex::exceptions::NotFoundError,
40 (boost::format("Detector with name %s not found") % name).str());
41 }
42 return det;
43}

◆ readFits() [1/3]

Read an object from an already open FITS object.

Parameters
[in]fitsfileFITS object to read from, already positioned at the desired HDU.

Definition at line 183 of file Persistable.h.

◆ readFits() [2/3]

static std::shared_ptr< DetectorCollection > lsst::afw::table::io::PersistableFacade< DetectorCollection >::readFits ( fits::MemFileManager & manager,
int hdu = fits::DEFAULT_HDU )
inlinestaticinherited

Read an object from a FITS file in memory.

Parameters
[in]managerManager for the memory to read from.
[in]hduHDU to read, where 0 is the primary. The special value of afw::fits::DEFAULT_HDU skips the primary HDU if it is empty.

Definition at line 205 of file Persistable.h.

◆ readFits() [3/3]

static std::shared_ptr< DetectorCollection > lsst::afw::table::io::PersistableFacade< DetectorCollection >::readFits ( std::string const & fileName,
int hdu = fits::DEFAULT_HDU )
inlinestaticinherited

Read an object from a regular FITS file.

Parameters
[in]fileNameName of the file to read.
[in]hduHDU to read, where 0 is the primary. The special value of afw::fits::DEFAULT_HDU skips the primary HDU if it is empty.

Definition at line 194 of file Persistable.h.

◆ remove() [1/2]

template<typename T >
void lsst::afw::cameraGeom::DetectorCollectionBase< T >::remove ( int id)
protectedinherited

Definition at line 144 of file DetectorCollection.cc.

144 {
145 auto idIter = _idDict.find(id);
146 if (idIter == _idDict.end()) {
147 throw LSST_EXCEPT(
148 pex::exceptions::NotFoundError,
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}
T erase(T... args)

◆ remove() [2/2]

template<typename T >
void lsst::afw::cameraGeom::DetectorCollectionBase< T >::remove ( std::string const & name)
protectedinherited

Definition at line 129 of file DetectorCollection.cc.

129 {
130 auto nameIter = _nameDict.find(name);
131 if (nameIter == _nameDict.end()) {
132 throw LSST_EXCEPT(
133 pex::exceptions::NotFoundError,
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}

◆ size()

template<typename T >
std::size_t lsst::afw::cameraGeom::DetectorCollectionBase< T >::size ( ) const
inlinenoexceptinherited

Get the number of detectors.

Renamed to __len__ in Python.

Definition at line 67 of file DetectorCollection.h.

67{ return _idDict.size(); }
T size(T... args)

◆ write()

void lsst::afw::cameraGeom::DetectorCollection::write ( OutputArchiveHandle & handle) const
overrideprotectedvirtual

Write the object to one or more catalogs.

The handle object passed to this function provides an interface for adding new catalogs and adding nested objects to the same archive (while checking for duplicates). See OutputArchiveHandle for more information.

Reimplemented from lsst::afw::table::io::Persistable.

Definition at line 250 of file DetectorCollection.cc.

250 {
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}
IdMap const & getIdMap() const noexcept
Get a map keyed and ordered by ID.

◆ writeFits() [1/3]

void lsst::afw::table::io::Persistable::writeFits ( fits::Fits & fitsfile) const
inherited

Write the object to an already-open FITS object.

Parameters
[in]fitsfileOpen FITS object to write to.

Definition at line 18 of file Persistable.cc.

18 {
19 OutputArchive archive;
20 archive.put(this);
21 archive.writeFits(fitsfile);
22}

◆ writeFits() [2/3]

void lsst::afw::table::io::Persistable::writeFits ( fits::MemFileManager & manager,
std::string const & mode = "w" ) const
inherited

Write the object to a FITS image in memory.

Parameters
[in]managerName of the file to write to.
[in]modeIf "w", any existing file with the given name will be overwritten. If "a", new HDUs will be appended to an existing file.

Definition at line 29 of file Persistable.cc.

29 {
30 fits::Fits fitsfile(manager, mode, fits::Fits::AUTO_CLOSE | fits::Fits::AUTO_CHECK);
31 writeFits(fitsfile);
32}
void writeFits(std::string const &fileName, std::string const &mode="w") const
Write the object to a regular FITS file.

◆ writeFits() [3/3]

void lsst::afw::table::io::Persistable::writeFits ( std::string const & fileName,
std::string const & mode = "w" ) const
inherited

Write the object to a regular FITS file.

Parameters
[in]fileNameName of the file to write to.
[in]modeIf "w", any existing file with the given name will be overwritten. If "a", new HDUs will be appended to an existing file.

Definition at line 24 of file Persistable.cc.

24 {
25 fits::Fits fitsfile(fileName, mode, fits::Fits::AUTO_CLOSE | fits::Fits::AUTO_CHECK);
26 writeFits(fitsfile);
27}

The documentation for this class was generated from the following files: