LSST Applications g02d81e74bb+86cf3d8bc9,g180d380827+7a4e862ed4,g2079a07aa2+86d27d4dc4,g2305ad1205+e1ca1c66fa,g29320951ab+012e1474a1,g295015adf3+341ea1ce94,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g33d1c0ed96+0e5473021a,g3a166c0a6a+0e5473021a,g3ddfee87b4+c429d67c83,g48712c4677+f88676dd22,g487adcacf7+27e1e21933,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+b41db86c35,g5a732f18d5+53520f316c,g64a986408d+86cf3d8bc9,g858d7b2824+86cf3d8bc9,g8a8a8dda67+585e252eca,g99cad8db69+84912a7fdc,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,ga8c6da7877+a2b54eae19,gb0e22166c9+60f28cb32d,gba4ed39666+c2a2e4ac27,gbb8dafda3b+6681f309db,gc120e1dc64+f0fcc2f6d8,gc28159a63d+0e5473021a,gcf0d15dbbd+c429d67c83,gdaeeff99f8+f9a426f77a,ge6526c86ff+0433e6603d,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gff1a9f87cc+86cf3d8bc9,w.2024.17
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Protected Member Functions | List of all members
lsst::afw::cameraGeom::DetectorCollectionBase< T > Class Template Referenceabstract

An abstract base class for collections of Detectors and specific subclasses thereof. More...

#include <DetectorCollection.h>

Inheritance diagram for lsst::afw::cameraGeom::DetectorCollectionBase< T >:
lsst::afw::cameraGeom::DetectorCollection lsst::afw::cameraGeom::Camera

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

virtual ~DetectorCollectionBase () noexcept=0
 
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.
 

Protected Member Functions

 DetectorCollectionBase (List const &detectorList)
 
 DetectorCollectionBase () noexcept=default
 
 DetectorCollectionBase (DetectorCollectionBase const &)=default
 
 DetectorCollectionBase (DetectorCollectionBase &&)=default
 
DetectorCollectionBaseoperator= (DetectorCollectionBase const &)=default
 
DetectorCollectionBaseoperator= (DetectorCollectionBase &&)=default
 
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

template<typename T>
class lsst::afw::cameraGeom::DetectorCollectionBase< T >

An abstract base class for collections of Detectors and specific subclasses thereof.

Template Parameters
TElement type; either Detector or a subclass thereof.

This class provides the common interface and implementation for DetectorCollection (which holds true Detector instances) and Camera::Builder (which holds Detector::InCameraBuilder instances). It is not intended to define an interface independent of those classes.

Definition at line 49 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>>

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>>

Definition at line 54 of file DetectorCollection.h.

◆ NameMap

Definition at line 52 of file DetectorCollection.h.

Constructor & Destructor Documentation

◆ ~DetectorCollectionBase()

template<typename T >
lsst::afw::cameraGeom::DetectorCollectionBase< T >::~DetectorCollectionBase ( )
pure virtualdefaultnoexcept

◆ DetectorCollectionBase() [1/4]

template<typename T >
lsst::afw::cameraGeom::DetectorCollectionBase< T >::DetectorCollectionBase ( List const & detectorList)
explicitprotected

Definition at line 74 of file DetectorCollection.cc.

74 {
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}
table::Key< int > detector
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48
T size(T... args)

◆ DetectorCollectionBase() [2/4]

template<typename T >
lsst::afw::cameraGeom::DetectorCollectionBase< T >::DetectorCollectionBase ( )
protecteddefaultnoexcept

◆ DetectorCollectionBase() [3/4]

template<typename T >
lsst::afw::cameraGeom::DetectorCollectionBase< T >::DetectorCollectionBase ( DetectorCollectionBase< T > const & )
protecteddefault

◆ DetectorCollectionBase() [4/4]

template<typename T >
lsst::afw::cameraGeom::DetectorCollectionBase< T >::DetectorCollectionBase ( DetectorCollectionBase< T > && )
protecteddefault

Member Function Documentation

◆ add()

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

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}
T clear(T... args)
T emplace(T... args)
T end(T... args)
T find(T... args)

◆ empty()

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

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

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

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}

◆ getIdMap()

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

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
inlinenoexcept

Get a map keyed and ordered by name.

Definition at line 59 of file DetectorCollection.h.

59{ return _nameDict; }

◆ operator=() [1/2]

template<typename T >
DetectorCollectionBase & lsst::afw::cameraGeom::DetectorCollectionBase< T >::operator= ( DetectorCollectionBase< T > && )
protecteddefault

◆ operator=() [2/2]

template<typename T >
DetectorCollectionBase & lsst::afw::cameraGeom::DetectorCollectionBase< T >::operator= ( DetectorCollectionBase< T > const & )
protecteddefault

◆ operator[]() [1/2]

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

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

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}

◆ remove() [1/2]

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

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)
protected

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
inlinenoexcept

Get the number of detectors.

Renamed to __len__ in Python.

Definition at line 67 of file DetectorCollection.h.

67{ return _idDict.size(); }

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