LSSTApplications
20.0.0
LSSTDataManagementBasePackage
|
Go to the documentation of this file.
30 namespace cameraGeom {
35 CameraSys
const getNativeCameraSys() {
return FOCAL_PLANE; }
47 auto nativePoint =
transform(point, cameraSys, getNativeCameraSys());
50 for (
auto const &item :
getIdMap()) {
52 auto pointPixels =
detector->transform(nativePoint, getNativeCameraSys(),
PIXELS);
63 auto nativePointList =
transform(pointList, cameraSys, getNativeCameraSys());
67 auto pointPixelsList =
detector->transform(nativePointList, getNativeCameraSys(),
PIXELS);
68 for (
std::size_t i = 0; i < pointPixelsList.size(); ++i) {
69 auto const &pointPixels = pointPixelsList[i];
75 return detectorListList;
106 Detector::InCameraBuilder
const &
detector
114 class PersistenceHelper {
117 static PersistenceHelper
const & get() {
118 static PersistenceHelper
const instance;
129 PersistenceHelper() :
131 name(
schema.addField<
std::string>(
"name",
"Camera name",
"", 0)),
133 "Fully-qualified name of a Python PupilFactory class",
135 transformMap(
schema.addField<int>(
"transformMap",
"archive ID for Camera's TransformMap"))
139 PersistenceHelper(PersistenceHelper
const &) =
delete;
140 PersistenceHelper(PersistenceHelper &&) =
delete;
142 PersistenceHelper & operator=(PersistenceHelper
const &) =
delete;
143 PersistenceHelper & operator=(PersistenceHelper &&) =
delete;
151 auto const &
keys = PersistenceHelper::get();
153 auto record = cat.
addNew();
190 auto const &
keys = PersistenceHelper::get();
192 auto const & cat = catalogs[1];
195 auto const & record = cat.front();
196 _name = record.get(
keys.name);
197 _pupilFactoryName = record.get(
keys.pupilFactoryName);
201 std::string Camera::getPersistenceName()
const {
return "Camera"; }
212 for (
auto const & pair : camera.
getIdMap()) {
217 for (
auto const & connection : camera.
getTransformMap()->getConnections()) {
226 if (connection.fromSys.hasDetectorName()) {
227 assert(connection.toSys.getDetectorName() == connection.fromSys.getDetectorName());
228 auto detector = (*this)[connection.fromSys.getDetectorName()];
229 assert(connection.fromSys ==
detector->getNativeCoordSys());
231 connection.transform);
233 assert(connection.fromSys == getNativeCameraSys());
234 if (!connection.toSys.hasDetectorName()) {
235 _connections.push_back(connection);
253 for (
auto const & pair :
getIdMap()) {
254 auto const & detectorBuilder = *pair.second;
257 detectorBuilder.getOrientation().makeFpPixelTransform(detectorBuilder.getPixelSize()),
258 getNativeCameraSys(),
259 detectorBuilder.getNativeCoordSys()
263 getDetectorBuilderConnections(detectorBuilder).begin(),
264 getDetectorBuilderConnections(detectorBuilder).
end());
270 detectors.reserve(
size());
271 for (
auto const & pair :
getIdMap()) {
272 auto const & detectorBuilder = *pair.second;
273 detectors.push_back(detectorBuilder.finish(
transformMap));
287 template <
typename Iter>
288 Iter findConnection(Iter
first, Iter last,
CameraSys const & toSys) {
291 [&toSys](
auto const & connection) {
292 return connection.toSys == toSys;
306 (
boost::format(
"%s should be added to Detector %s, not Camera") %
310 auto iter = findConnection(_connections.begin(), _connections.end(), toSys);
311 if (
iter == _connections.end()) {
312 _connections.push_back(
321 auto iter = findConnection(_connections.begin(), _connections.end(), toSys);
322 if (
iter != _connections.end()) {
323 _connections.erase(
iter);
340 template class PersistableFacade<cameraGeom::Camera>;
An immutable representation of a camera.
void write(OutputArchiveHandle &handle) const override
Write the object to one or more catalogs.
An object passed to Persistable::write to allow it to persist itself.
std::string getName() const
Return the name of the camera.
bool contains(Point2D const &point) const noexcept
Return true if the box contains the point.
void saveCatalog(BaseCatalog const &catalog)
Save a catalog in the archive.
static Factory const registration
std::string getSysName() const
Get coordinate system name.
def format(config, name=None, writeSourceLine=True, prefix="", verbose=False)
table::Key< int > transformMap
std::size_t size() const noexcept
Get the number of detectors.
PersistableFactory(std::string const &name)
Constructor for the factory.
Builder(std::string const &name)
Construct a Builder for a completely new Camera with the given name.
virtual ~Builder() noexcept
std::shared_ptr< TransformMap const > getTransformMap() const noexcept
Obtain the transform registry.
BaseCatalog makeCatalog(Schema const &schema)
Return a new, empty catalog with the given schema.
#define LSST_ARCHIVE_ASSERT(EXPR)
An assertion macro used to validate the structure of an InputArchive.
Reports errors in the logical structure of the program.
A vector of catalogs used by Persistable.
virtual ~Camera() noexcept
A base class for factory classes used to reconstruct objects from records.
DetectorCollection::List DetectorList
lsst::geom::Point2D transform(lsst::geom::Point2D const &point, CameraSys const &fromSys, CameraSys const &toSys) const
Transform a point from one camera coordinate system to another.
table::Key< std::string > pupilFactoryName
A helper class that allows the properties of a detector to be modified in the course of modifying a f...
IdMap const & getIdMap() const noexcept
Get a map keyed and ordered by ID.
A base class for image defects.
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
An immutable collection of Detectors that can be accessed by name or ID.
Camera(Camera const &)=delete
std::shared_ptr< Persistable > read(InputArchive const &archive, CatalogVector const &catalogs) const override
Construct a new object from the given InputArchive and vector of catalogs.
CameraSys const FOCAL_PLANE
Focal plane coordinates: Position on a 2-d planar approximation to the focal plane (x,...
void setTransformFromFocalPlaneTo(CameraSys const &toSys, std::shared_ptr< afw::geom::TransformPoint2ToPoint2 const > transform)
Set the transformation from FOCAL_PLANE to the given coordinate system.
std::shared_ptr< afw::geom::TransformPoint2ToPoint2 > getTransform(CameraSys const &fromSys, CameraSys const &toSys) const
Get a transform from one CameraSys to another.
std::shared_ptr< Detector::InCameraBuilder > add(std::string const &name, int id)
Add a new Detector with the given name and ID.
void add(std::shared_ptr< Detector::InCameraBuilder > detector)
Add a detector to the collection.
std::string getDetectorName() const
Get detector name, or "" if not a detector-specific coordinate system.
DetectorList findDetectors(lsst::geom::Point2D const &point, CameraSys const &cameraSys) const
Find the detectors that cover a point in any camera system.
table::Key< int > detector
A helper class for creating and modifying cameras.
table::Key< std::string > name
std::string getPupilFactoryName() const
Return the fully-qualified name of the Python class that provides this Camera's PupilFactory.
int put(Persistable const *obj, bool permissive=false)
Save an object to the archive and return a unique ID that can be used to retrieve it from an InputArc...
std::shared_ptr< RecordT > addNew()
Create a new record, add it to the end of the catalog, and return a pointer to it.
void write(OutputArchiveHandle &handle) const override
Write the object to one or more catalogs.
A floating-point coordinate rectangle geometry.
Camera coordinate system prefix.
bool hasDetectorName() const noexcept
Does this have a non-blank detector name?
std::vector< DetectorList > findDetectorsList(std::vector< lsst::geom::Point2D > const &pointList, CameraSys const &cameraSys) const
Find the detectors that cover a list of points in any camera system.
CameraSysPrefix const PIXELS
Pixel coordinates: Nominal position on the entry surface of a given detector (x, y unbinned pixels).
bool discardTransformFromFocalPlaneTo(CameraSys const &toSys)
Remove any transformation from FOCAL_PLANE to the given coordinate system.
Camera coordinate system; used as a key in in TransformMap.