LSST Applications g0265f82a02+d6b5cd48b5,g02d81e74bb+80768bd682,g04242d3e92+8eaa23c173,g06b2ea86fd+734f9505a2,g2079a07aa2+14824f138e,g212a7c68fe+5f4fc2ea00,g2305ad1205+293ab1327e,g2bbee38e9b+d6b5cd48b5,g337abbeb29+d6b5cd48b5,g3ddfee87b4+8eaa23c173,g487adcacf7+abec5a19c5,g50ff169b8f+5929b3527e,g52b1c1532d+a6fc98d2e7,g591dd9f2cf+97ef3b4495,g5a732f18d5+66d966b544,g5d7b63bc56+636c3c3fd8,g64a986408d+80768bd682,g858d7b2824+80768bd682,g8a8a8dda67+a6fc98d2e7,g99cad8db69+6282a5f541,g9ddcbc5298+d4bad12328,ga1e77700b3+246acaaf9c,ga8c6da7877+9e3c062e8e,gb0e22166c9+3863383f4c,gb6a65358fc+d6b5cd48b5,gba4ed39666+9664299f35,gbb8dafda3b+60f904e7bc,gc120e1dc64+1bf26d0180,gc28159a63d+d6b5cd48b5,gcf0d15dbbd+8eaa23c173,gd2a12a3803+f8351bc914,gdaeeff99f8+a38ce5ea23,ge79ae78c31+d6b5cd48b5,gee10cc3b42+a6fc98d2e7,gf1cff7945b+80768bd682,v24.1.5.rc1
LSST Data Management Base Package
Loading...
Searching...
No Matches
Classes | Public Types | Public Member Functions | Static Public Member Functions | Protected Types | Private Member Functions | List of all members
lsst::afw::cameraGeom::TransformMap Class Referencefinal

A registry of 2-dimensional coordinate transforms for a specific camera. More...

#include <TransformMap.h>

Inheritance diagram for lsst::afw::cameraGeom::TransformMap:
lsst::afw::table::io::PersistableFacade< TransformMap > lsst::afw::table::io::Persistable

Classes

struct  Connection
 Representation of a single edge in the graph defined by a TransformMap. More...
 
class  Factory
 

Public Types

using Transforms = std::unordered_map<CameraSys, std::shared_ptr<geom::TransformPoint2ToPoint2>>
 
using CameraSysIterator = boost::transform_iterator<GetKey, CameraSysFrameIdMap::const_iterator>
 

Public Member Functions

 ~TransformMap () noexcept
 
lsst::geom::Point2D transform (lsst::geom::Point2D const &point, CameraSys const &fromSys, CameraSys const &toSys) const
 Convert a point from one camera coordinate system to another.
 
std::vector< lsst::geom::Point2Dtransform (std::vector< lsst::geom::Point2D > const &pointList, CameraSys const &fromSys, CameraSys const &toSys) const
 Convert a list of points from one coordinate system to another.
 
CameraSysIterator begin () const
 
CameraSysIterator end () const
 
bool contains (CameraSys const &system) const noexcept
 Can this transform to and from the specified coordinate system?
 
std::shared_ptr< geom::TransformPoint2ToPoint2 > getTransform (CameraSys const &fromSys, CameraSys const &toSys) const
 Get a Transform from one camera coordinate system to another.
 
size_t size () const noexcept
 Get the number of supported coordinate systems.
 
std::vector< ConnectiongetConnections () const
 Return the sequence of connections used to construct this Transform.
 
bool isPersistable () const noexcept override
 TransformMaps should always be Persistable.
 
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.
 
 TransformMap (TransformMap const &other)=delete
 
 TransformMap (TransformMap &&other)=delete
 
TransformMapoperator= (TransformMap const &)=delete
 
TransformMapoperator= (TransformMap &&)=delete
 

Static Public Member Functions

static std::shared_ptr< TransformMap const > make (CameraSys const &reference, Transforms const &transforms)
 Construct a TransformMap with all transforms relative to a single reference CameraSys.
 
static std::shared_ptr< TransformMap const > make (CameraSys const &reference, std::vector< Connection > const &connections)
 Construct a TransformMap from a sequence of Connections.
 
static std::shared_ptr< TransformMapreadFits (fits::Fits &fitsfile)
 Read an object from an already open FITS object.
 
static std::shared_ptr< TransformMapreadFits (std::string const &fileName, int hdu=fits::DEFAULT_HDU)
 Read an object from a regular FITS file.
 
static std::shared_ptr< TransformMapreadFits (fits::MemFileManager &manager, int hdu=fits::DEFAULT_HDU)
 Read an object from a FITS file in memory.
 
static std::shared_ptr< TransformMapdynamicCast (std::shared_ptr< Persistable > const &ptr)
 Dynamically cast a shared_ptr.
 

Protected Types

using OutputArchiveHandle = io::OutputArchiveHandle
 

Private Member Functions

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.
 

Detailed Description

A registry of 2-dimensional coordinate transforms for a specific camera.

Represents the interrelationships between camera coordinate systems for a particular camera. It can be seen as a mapping between a pair of CameraSys and a Transform between them (though it does not conform to either the C++ map or Python dictionary APIs).

TransformMap supports:

TransformMap is immutable and must always be held by shared_ptr; this is enforced by making all non-deleted constructors private, and instead providing static make member functions for construction (in Python, these are exposed as regular constructors).

Exception Safety
Unless otherwise specified, all methods guarantee only basic exception safety.

Definition at line 62 of file TransformMap.h.

Member Typedef Documentation

◆ CameraSysIterator

using lsst::afw::cameraGeom::TransformMap::CameraSysIterator = boost::transform_iterator<GetKey, CameraSysFrameIdMap::const_iterator>

Definition at line 75 of file TransformMap.h.

◆ OutputArchiveHandle

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

Definition at line 108 of file Persistable.h.

◆ Transforms

Definition at line 74 of file TransformMap.h.

Constructor & Destructor Documentation

◆ TransformMap() [1/2]

lsst::afw::cameraGeom::TransformMap::TransformMap ( TransformMap const & other)
delete

TransformMap is immutable, so both moving and copying are prohibited. It is also always held by shared_ptr, so there is no good reason to copy it.

◆ TransformMap() [2/2]

lsst::afw::cameraGeom::TransformMap::TransformMap ( TransformMap && other)
delete

TransformMap is immutable, so both moving and copying are prohibited. It is also always held by shared_ptr, so there is no good reason to copy it.

◆ ~TransformMap()

lsst::afw::cameraGeom::TransformMap::~TransformMap ( )
defaultnoexcept

Member Function Documentation

◆ begin()

CameraSysIterator lsst::afw::cameraGeom::TransformMap::begin ( ) const
inline

Definition at line 164 of file TransformMap.h.

164{ return boost::make_transform_iterator(_frameIds.begin(), GetKey()); }
T begin(T... args)

◆ contains()

bool lsst::afw::cameraGeom::TransformMap::contains ( CameraSys const & system) const
noexcept

Can this transform to and from the specified coordinate system?

Parameters
systemThe coordinate system to search for
Returns
true if system is supported, false otherwise
Exception Safety
Shall not throw exceptions.

Definition at line 215 of file TransformMap.cc.

215{ return _frameIds.count(system) > 0; }
T count(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.

◆ end()

CameraSysIterator lsst::afw::cameraGeom::TransformMap::end ( ) const
inline

Definition at line 166 of file TransformMap.h.

166{ return boost::make_transform_iterator(_frameIds.end(), GetKey()); }
T end(T... args)

◆ getConnections()

std::vector< TransformMap::Connection > lsst::afw::cameraGeom::TransformMap::getConnections ( ) const

Return the sequence of connections used to construct this Transform.

The order of the connections may differ from the original order, but is guaranteed to yield the same TransformMap when passed to make with the same reference system.

Definition at line 278 of file TransformMap.cc.

278{ return _connections; }

◆ getPersistenceName()

std::string lsst::afw::cameraGeom::TransformMap::getPersistenceName ( ) const
overrideprivatevirtual

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 381 of file TransformMap.cc.

381 {
382 return "TransformMap";
383}

◆ getPythonModule()

std::string lsst::afw::cameraGeom::TransformMap::getPythonModule ( ) const
overrideprivatevirtual

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 385 of file TransformMap.cc.

385 {
386 return "lsst.afw.cameraGeom";
387}

◆ getTransform()

std::shared_ptr< geom::TransformPoint2ToPoint2 > lsst::afw::cameraGeom::TransformMap::getTransform ( CameraSys const & fromSys,
CameraSys const & toSys ) const

Get a Transform from one camera coordinate system to another.

Parameters
fromSys,toSysCamera coordinate systems between which to transform
Returns
a Transform that converts from fromSys to toSys in the forward direction. The Transform will be invertible.
Exceptions
lsst::pex::exceptions::InvalidParameterErrorThrown if either fromSys or toSys is not supported.

Definition at line 217 of file TransformMap.cc.

218 {
219 return std::make_shared<geom::TransformPoint2ToPoint2>(*_getMapping(fromSys, toSys));
220}

◆ isPersistable()

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

TransformMaps should always be Persistable.

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

Definition at line 210 of file TransformMap.h.

210{ return true; }

◆ make() [1/2]

std::shared_ptr< TransformMap const > lsst::afw::cameraGeom::TransformMap::make ( CameraSys const & reference,
std::vector< Connection > const & connections )
static

Construct a TransformMap from a sequence of Connections.

Parameters
referenceInitial coordinate system that must be connected to all other coordinate systems in the map.
connectionsSequence of Connection structs, each of which relates two CameraSys via the Transform that connects them.
Exceptions
lsst::pex::exceptions::InvalidParameterErrorThrown if the graph defined by the given connections does not define a single unique path (which may involve multiple Connections) between any CameraSys and the reference CameraSys.

This method is wrapped as a regular constructor in Python.

Definition at line 188 of file TransformMap.cc.

191 {
192 // We can't use make_shared because TransformMap ctor is private.
194 new TransformMap(standardizeConnections(reference, connections))
195 );
196}
TransformMap(TransformMap const &other)=delete

◆ make() [2/2]

std::shared_ptr< TransformMap const > lsst::afw::cameraGeom::TransformMap::make ( CameraSys const & reference,
Transforms const & transforms )
static

Construct a TransformMap with all transforms relative to a single reference CameraSys.

Parameters
referenceCoordinate system from which each Transform in transforms converts.
transformsA map whose keys are camera coordinate systems, and whose values point to Transforms that convert from reference to the corresponding key. All Transforms must be invertible.
Exceptions
lsst::pex::exceptions::InvalidParameterErrorThrown if transforms contains the reference camera system as a key, or if any Transform is not invertible.

This method is wrapped as a regular constructor in Python.

Definition at line 173 of file TransformMap.cc.

176 {
177 std::vector<Connection> connections;
178 connections.reserve(transforms.size());
179 for (auto const & pair : transforms) {
180 connections.push_back(Connection{pair.second, reference, pair.first});
181 }
182 // We can't use make_shared because TransformMap ctor is private.
184 new TransformMap(standardizeConnections(reference, std::move(connections)))
185 );
186}
T move(T... args)
T push_back(T... args)
T reserve(T... args)

◆ operator=() [1/2]

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

TransformMap is immutable, so both moving and copying are prohibited. It is also always held by shared_ptr, so there is no good reason to copy it.

◆ operator=() [2/2]

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

TransformMap is immutable, so both moving and copying are prohibited. It is also always held by shared_ptr, so there is no good reason to copy it.

◆ readFits() [1/3]

static std::shared_ptr< TransformMap > lsst::afw::table::io::PersistableFacade< TransformMap >::readFits ( fits::Fits & fitsfile)
inlinestaticinherited

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< TransformMap > lsst::afw::table::io::PersistableFacade< TransformMap >::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< TransformMap > lsst::afw::table::io::PersistableFacade< TransformMap >::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.

◆ size()

size_t lsst::afw::cameraGeom::TransformMap::size ( ) const
noexcept

Get the number of supported coordinate systems.

Exception Safety
Shall not throw exceptions.

Definition at line 237 of file TransformMap.cc.

237{ return _frameIds.size(); }
T size(T... args)

◆ transform() [1/2]

lsst::geom::Point2D lsst::afw::cameraGeom::TransformMap::transform ( lsst::geom::Point2D const & point,
CameraSys const & fromSys,
CameraSys const & toSys ) const

Convert a point from one camera coordinate system to another.

Parameters
pointPoint from which to transform
fromSys,toSysCamera coordinate systems between which to transform
Returns
the transformed value. Equivalent to getTransform(fromSys, toSys).applyForward(point).
Exceptions
lsst::pex::exceptions::InvalidParameterErrorThrown if either fromSys or toSys is not supported.

Definition at line 202 of file TransformMap.cc.

203 {
204 auto mapping = _getMapping(fromSys, toSys);
205 return POINT2_ENDPOINT.pointFromData(mapping->applyForward(POINT2_ENDPOINT.dataFromPoint(point)));
206}

◆ transform() [2/2]

std::vector< lsst::geom::Point2D > lsst::afw::cameraGeom::TransformMap::transform ( std::vector< lsst::geom::Point2D > const & pointList,
CameraSys const & fromSys,
CameraSys const & toSys ) const

Convert a list of points from one coordinate system to another.

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

Definition at line 208 of file TransformMap.cc.

210 {
211 auto mapping = _getMapping(fromSys, toSys);
212 return POINT2_ENDPOINT.arrayFromData(mapping->applyForward(POINT2_ENDPOINT.dataFromArray(pointList)));
213}

◆ write()

void lsst::afw::cameraGeom::TransformMap::write ( OutputArchiveHandle & handle) const
overrideprivatevirtual

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 389 of file TransformMap.cc.

389 {
390 auto const & keys = PersistenceHelper::get();
391
392 auto cat = handle.makeCatalog(keys.schema);
393 for (auto const & connection : _connections) {
394 auto record = cat.addNew();
395 record->set(keys.fromSysName, connection.fromSys.getSysName());
396 record->set(keys.fromSysDetectorName, connection.fromSys.getDetectorName());
397 record->set(keys.toSysName, connection.toSys.getSysName());
398 record->set(keys.toSysDetectorName, connection.toSys.getDetectorName());
399 record->set(keys.transform, handle.put(connection.transform));
400 }
401 handle.saveCatalog(cat);
402}

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