LSSTApplications  17.0+11,17.0+34,17.0+56,17.0+57,17.0+59,17.0+7,17.0-1-g377950a+33,17.0.1-1-g114240f+2,17.0.1-1-g4d4fbc4+28,17.0.1-1-g55520dc+49,17.0.1-1-g5f4ed7e+52,17.0.1-1-g6dd7d69+17,17.0.1-1-g8de6c91+11,17.0.1-1-gb9095d2+7,17.0.1-1-ge9fec5e+5,17.0.1-1-gf4e0155+55,17.0.1-1-gfc65f5f+50,17.0.1-1-gfc6fb1f+20,17.0.1-10-g87f9f3f+1,17.0.1-11-ge9de802+16,17.0.1-16-ga14f7d5c+4,17.0.1-17-gc79d625+1,17.0.1-17-gdae4c4a+8,17.0.1-2-g26618f5+29,17.0.1-2-g54f2ebc+9,17.0.1-2-gf403422+1,17.0.1-20-g2ca2f74+6,17.0.1-23-gf3eadeb7+1,17.0.1-3-g7e86b59+39,17.0.1-3-gb5ca14a,17.0.1-3-gd08d533+40,17.0.1-30-g596af8797,17.0.1-4-g59d126d+4,17.0.1-4-gc69c472+5,17.0.1-6-g5afd9b9+4,17.0.1-7-g35889ee+1,17.0.1-7-gc7c8782+18,17.0.1-9-gc4bbfb2+3,w.2019.22
LSSTDataManagementBasePackage
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::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< Detector > >
 
using IdMap = std::map< int, std::shared_ptr< Detector > >
 
using List = std::vector< std::shared_ptr< Detector > >
 

Public Member Functions

 DetectorCollection (List const &detectorList)
 
 DetectorCollection (DetectorCollection const &)=delete
 
 DetectorCollection (DetectorCollection &&)=delete
 
DetectorCollectionoperator= (DetectorCollection const &)=delete
 
DetectorCollectionoperator= (DetectorCollection &&)=delete
 
virtual ~DetectorCollection () noexcept
 
NameMap const & getNameMap () const noexcept
 Get an unordered map over detector names. More...
 
IdMap const & getIdMap () const noexcept
 Get an unordered map over detector IDs. More...
 
lsst::geom::Box2D const & getFpBBox () const noexcept
 Return a focal plane bounding box that encompasses all detectors. More...
 
std::size_t size () const noexcept
 Get the number of detectors. More...
 
bool empty () const noexcept
 Determine if the DetectorCollection contains any Detectors. More...
 
std::shared_ptr< Detectoroperator[] (std::string const &name) const
 Implement the [name] operator. More...
 
std::shared_ptr< Detectoroperator[] (int id) const
 Implement the [id] operator. More...
 
std::shared_ptr< Detectorget (std::string const &name, std::shared_ptr< Detector > def=nullptr) const
 Support the "in" operator. More...
 
std::shared_ptr< Detectorget (int id, std::shared_ptr< Detector > def=nullptr) const
 Support the "in" operator. More...
 
bool isPersistable () const noexcept override
 DetectorCollections are always persistable. More...
 
void writeFits (std::string const &fileName, std::string const &mode="w") const
 Write the object to a regular FITS file. More...
 
void writeFits (fits::MemFileManager &manager, std::string const &mode="w") const
 Write the object to a FITS image in memory. More...
 
void writeFits (fits::Fits &fitsfile) const
 Write the object to an already-open FITS object. More...
 

Static Public Member Functions

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

Protected Types

typedef io::OutputArchiveHandle 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. More...
 
std::string getPythonModule () const override
 Return the fully-qualified Python module that should be imported to guarantee that its factory is registered. More...
 
void write (OutputArchiveHandle &handle) const override
 Write the object to one or more catalogs. More...
 

Detailed Description

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

Definition at line 40 of file DetectorCollection.h.

Member Typedef Documentation

◆ IdMap

Definition at line 44 of file DetectorCollection.h.

◆ List

Definition at line 45 of file DetectorCollection.h.

◆ NameMap

Definition at line 43 of file DetectorCollection.h.

◆ OutputArchiveHandle

typedef io::OutputArchiveHandle lsst::afw::table::io::Persistable::OutputArchiveHandle
protectedinherited

Definition at line 108 of file Persistable.h.

Constructor & Destructor Documentation

◆ DetectorCollection() [1/4]

lsst::afw::cameraGeom::DetectorCollection::DetectorCollection ( List const &  detectorList)
explicit

Definition at line 32 of file DetectorCollection.cc.

32  {
33  for (auto const & detector : detectorList) {
34  _nameDict[detector->getName()] = detector;
35  _idDict[detector->getId()] = detector;
36  for (auto const & corner : detector->getCorners(FOCAL_PLANE)) {
37  _fpBBox.include(corner);
38  }
39  }
40 
41  if (_idDict.size() < detectorList.size()) {
42  throw LSST_EXCEPT(pex::exceptions::RuntimeError, "Detector IDs are not unique");
43  }
44  if (_nameDict.size() < detectorList.size()) {
45  throw LSST_EXCEPT(pex::exceptions::RuntimeError, "Detector names are not unique");
46  }
47 }
void include(Point2D const &point) noexcept
Expand this to ensure that this->contains(point).
Definition: Box.cc:343
table::Key< int > detector
T size(T... args)
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
CameraSys const FOCAL_PLANE
Focal plane coordinates: Position on a 2-d planar approximation to the focal plane (x...
Definition: CameraSys.cc:30

◆ DetectorCollection() [2/4]

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

◆ DetectorCollection() [3/4]

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

◆ ~DetectorCollection()

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

◆ DetectorCollection() [4/4]

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

Definition at line 149 of file DetectorCollection.cc.

152  : DetectorCollection(PersistenceHelper::get().makeDetectorList(archive, catalogs))
153 {}

Member Function Documentation

◆ 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 18 of file Persistable.cc.

18  {
20  if (!result) {
21  throw LSST_EXCEPT(pex::exceptions::TypeError, "Dynamic pointer cast failed");
22  }
23  return result;
24 }
uint64_t * ptr
Definition: RangeSet.cc:88
py::object result
Definition: schema.cc:418
T dynamic_pointer_cast(T... args)
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48

◆ empty()

bool lsst::afw::cameraGeom::DetectorCollection::empty ( ) const
inlinenoexcept

Determine if the DetectorCollection contains any Detectors.

Definition at line 77 of file DetectorCollection.h.

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

◆ get() [1/2]

std::shared_ptr< Detector > lsst::afw::cameraGeom::DetectorCollection::get ( std::string const &  name,
std::shared_ptr< Detector def = nullptr 
) const

Support the "in" operator.

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

Definition at line 67 of file DetectorCollection.cc.

68  {
69  auto i = _nameDict.find(name);
70  if (i == _nameDict.end()) {
71  return def;
72  }
73  return i->second;
74 }
T end(T... args)
T find(T... args)

◆ get() [2/2]

std::shared_ptr< Detector > lsst::afw::cameraGeom::DetectorCollection::get ( int  id,
std::shared_ptr< Detector def = nullptr 
) const

Support the "in" operator.

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

Definition at line 76 of file DetectorCollection.cc.

76  {
77  auto i = _idDict.find(id);
78  if (i == _idDict.end()) {
79  return def;
80  }
81  return i->second;
82 }
T end(T... args)
T find(T... args)

◆ 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 67 of file DetectorCollection.h.

67 { return _fpBBox; }

◆ getIdMap()

IdMap const& lsst::afw::cameraGeom::DetectorCollection::getIdMap ( ) const
inlinenoexcept

Get an unordered map over detector IDs.

Definition at line 64 of file DetectorCollection.h.

64 { return _idDict; }

◆ getNameMap()

NameMap const& lsst::afw::cameraGeom::DetectorCollection::getNameMap ( ) const
inlinenoexcept

Get an unordered map over detector names.

Definition at line 61 of file DetectorCollection.h.

61 { 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 155 of file DetectorCollection.cc.

155  {
156  return "DetectorCollection";
157 }

◆ 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 159 of file DetectorCollection.cc.

159  {
160  return "lsst.afw.cameraGeom";
161 }

◆ isPersistable()

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

DetectorCollections are always persistable.

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

Definition at line 114 of file DetectorCollection.h.

114  {
115  return true;
116  }

◆ operator=() [1/2]

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

◆ operator=() [2/2]

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

◆ operator[]() [1/2]

std::shared_ptr< Detector > lsst::afw::cameraGeom::DetectorCollection::operator[] ( std::string const &  name) const

Implement the [name] operator.

Parameters
[in]namedetector name
Returns
pointer to detector entry

Definition at line 51 of file DetectorCollection.cc.

51  {
52  auto det = get(name);
53  if (det == nullptr) {
54  throw LSST_EXCEPT(pex::exceptions::NotFoundError, "Detector name not found");
55  }
56  return det;
57 }
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48

◆ operator[]() [2/2]

std::shared_ptr< Detector > lsst::afw::cameraGeom::DetectorCollection::operator[] ( int  id) const

Implement the [id] operator.

Parameters
[in]iddetector name
Returns
pointer to detector entry

Definition at line 59 of file DetectorCollection.cc.

59  {
60  auto det = get(id);
61  if (det == nullptr) {
62  throw LSST_EXCEPT(pex::exceptions::NotFoundError, "Detector id not found");
63  }
64  return det;
65 }
table::Key< int > id
Definition: Detector.cc:166
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48

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

183  {
184  return dynamicCast(Persistable::_readFits(fitsfile));
185  }
static std::shared_ptr< DetectorCollection > dynamicCast(std::shared_ptr< Persistable > const &ptr)
Dynamically cast a shared_ptr.
Definition: Persistable.cc:18

◆ readFits() [2/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.

194  {
195  return dynamicCast(Persistable::_readFits(fileName, hdu));
196  }
static std::shared_ptr< DetectorCollection > dynamicCast(std::shared_ptr< Persistable > const &ptr)
Dynamically cast a shared_ptr.
Definition: Persistable.cc:18

◆ readFits() [3/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.

205  {
206  return dynamicCast(Persistable::_readFits(manager, hdu));
207  }
static std::shared_ptr< DetectorCollection > dynamicCast(std::shared_ptr< Persistable > const &ptr)
Dynamically cast a shared_ptr.
Definition: Persistable.cc:18

◆ size()

std::size_t lsst::afw::cameraGeom::DetectorCollection::size ( ) const
inlinenoexcept

Get the number of detectors.

Renamed to __len__ in Python.

Definition at line 72 of file DetectorCollection.h.

72 { 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 163 of file DetectorCollection.cc.

163  {
164  auto const & keys = PersistenceHelper::get();
165  auto cat = handle.makeCatalog(keys.schema);
166  for (auto const & pair : getIdMap()) {
167  auto record = cat.addNew();
168  record->set(keys.detector, handle.put(pair.second));
169  }
170  handle.saveCatalog(cat);
171 }
IdMap const & getIdMap() const noexcept
Get an unordered map over detector IDs.

◆ writeFits() [1/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 }
void writeFits(std::string const &fileName, std::string const &mode="w") const
Write the object to a regular FITS file.
Definition: Persistable.cc:24

◆ 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.
Definition: Persistable.cc:24

◆ writeFits() [3/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 }

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