LSSTApplications
17.0+124,17.0+14,17.0+73,18.0.0+37,18.0.0+80,18.0.0-4-g68ffd23+4,18.1.0-1-g0001055+12,18.1.0-1-g03d53ef+5,18.1.0-1-g1349e88+55,18.1.0-1-g2505f39+44,18.1.0-1-g5315e5e+4,18.1.0-1-g5e4b7ea+14,18.1.0-1-g7e8fceb+4,18.1.0-1-g85f8cd4+48,18.1.0-1-g8ff0b9f+4,18.1.0-1-ga2c679d+1,18.1.0-1-gd55f500+35,18.1.0-10-gb58edde+2,18.1.0-11-g0997b02+4,18.1.0-13-gfe4edf0b+12,18.1.0-14-g259bd21+21,18.1.0-19-gdb69f3f+2,18.1.0-2-g5f9922c+24,18.1.0-2-gd3b74e5+11,18.1.0-2-gfbf3545+32,18.1.0-26-g728bddb4+5,18.1.0-27-g6ff7ca9+2,18.1.0-3-g52aa583+25,18.1.0-3-g8ea57af+9,18.1.0-3-gb69f684+42,18.1.0-3-gfcaddf3+6,18.1.0-32-gd8786685a,18.1.0-4-gf3f9b77+6,18.1.0-5-g1dd662b+2,18.1.0-5-g6dbcb01+41,18.1.0-6-gae77429+3,18.1.0-7-g9d75d83+9,18.1.0-7-gae09a6d+30,18.1.0-9-gc381ef5+4,w.2019.45
LSSTDataManagementBasePackage
|
Classes | |
class | Amplifier |
Geometry and electronic information about raw amplifier images. More... | |
class | Camera |
An immutable representation of a camera. More... | |
class | CameraSys |
Camera coordinate system; used as a key in in TransformMap. More... | |
class | CameraSysPrefix |
Camera coordinate system prefix. More... | |
class | Detector |
A representation of a detector in a mosaic camera. More... | |
class | DetectorBase |
An abstract base class that provides common accessors for Detector and Detector::Builder. More... | |
class | DetectorCollection |
An immutable collection of Detectors that can be accessed by name or ID. More... | |
class | DetectorCollectionBase |
An abstract base class for collections of Detectors and specific subclasses thereof. More... | |
class | Orientation |
Describe a detector's orientation in the focal plane. More... | |
class | TransformMap |
A registry of 2-dimensional coordinate transforms for a specific camera. More... | |
Typedefs | |
using | PyCamera = py::class_< Camera, DetectorCollection, std::shared_ptr< Camera > > |
using | PyCameraBuilder = py::class_< Camera::Builder, DetectorCollectionBase< Detector::InCameraBuilder >, std::shared_ptr< Camera::Builder > > |
Enumerations | |
enum | ReadoutCorner { ReadoutCorner::LL, ReadoutCorner::LR, ReadoutCorner::UR, ReadoutCorner::UL } |
Readout corner, in the frame of reference of the assembled image. More... | |
enum | AssemblyState { AssemblyState::RAW, AssemblyState::SCIENCE } |
Assembly state of the amplifier, used to identify bounding boxes and component existence. More... | |
enum | DetectorType { DetectorType::SCIENCE, DetectorType::FOCUS, DetectorType::GUIDER, DetectorType::WAVEFRONT } |
Type of imaging detector. More... | |
Functions | |
void | swap (CameraSys &a, CameraSys &b) |
std::ostream & | operator<< (std::ostream &os, CameraSysPrefix const &detSysPrefix) |
std::ostream & | operator<< (std::ostream &os, CameraSys const &cameraSys) |
std::ostream & | operator<< (std::ostream &os, TransformMap::Connection const &connection) |
void | declareCameraBuilder (PyCamera &parent) |
void | declareCamera (py::module &mod) |
PYBIND11_MODULE (camera, mod) | |
PYBIND11_MODULE (cameraSys, mod) | |
PYBIND11_MODULE (orientation, mod) | |
Variables | |
CameraSys const | FOCAL_PLANE = CameraSys("FocalPlane") |
Focal plane coordinates: Position on a 2-d planar approximation to the focal plane (x,y mm). More... | |
CameraSys const | FIELD_ANGLE = CameraSys("FieldAngle") |
Field angle coordinates: Angle of a principal ray relative to the optical axis (x,y radians). More... | |
CameraSysPrefix const | PIXELS = CameraSysPrefix("Pixels") |
Pixel coordinates: Nominal position on the entry surface of a given detector (x, y unbinned pixels). More... | |
CameraSysPrefix const | TAN_PIXELS = CameraSysPrefix("TanPixels") |
Tangent-plane pixels on the detector (x, y unbinned pixels) More... | |
CameraSysPrefix const | ACTUAL_PIXELS = CameraSysPrefix("ActualPixels") |
The actual pixels where the photon lands and electrons are generated (x,y unbinned) This takes into account manufacturing defects, "tree ring" distortions and other such effects. More... | |
string | NullLinearityType = "None" |
using lsst::afw::cameraGeom::PyCamera = typedef py::class_<Camera, DetectorCollection, std::shared_ptr<Camera> > |
using lsst::afw::cameraGeom::PyCameraBuilder = typedef py::class_<Camera::Builder, DetectorCollectionBase<Detector::InCameraBuilder>, std::shared_ptr<Camera::Builder> > |
|
strong |
Assembly state of the amplifier, used to identify bounding boxes and component existence.
Enumerator | |
---|---|
RAW | |
SCIENCE |
Definition at line 48 of file Amplifier.h.
|
strong |
Type of imaging detector.
Enumerator | |
---|---|
SCIENCE | |
FOCUS | |
GUIDER | |
WAVEFRONT |
Definition at line 44 of file Detector.h.
|
strong |
Readout corner, in the frame of reference of the assembled image.
Enumerator | |
---|---|
LL | |
LR | |
UR | |
UL |
Definition at line 38 of file Amplifier.h.
void lsst::afw::cameraGeom::declareCamera | ( | py::module & | mod | ) |
Definition at line 46 of file camera.cc.
void lsst::afw::cameraGeom::declareCameraBuilder | ( | PyCamera & | parent | ) |
Definition at line 105 of file camera.cc.
std::ostream & lsst::afw::cameraGeom::operator<< | ( | std::ostream & | os, |
CameraSysPrefix const & | detSysPrefix | ||
) |
Definition at line 47 of file CameraSys.cc.
std::ostream & lsst::afw::cameraGeom::operator<< | ( | std::ostream & | os, |
CameraSys const & | cameraSys | ||
) |
Definition at line 52 of file CameraSys.cc.
std::ostream & lsst::afw::cameraGeom::operator<< | ( | std::ostream & | os, |
TransformMap::Connection const & | connection | ||
) |
Definition at line 170 of file TransformMap.cc.
lsst::afw::cameraGeom::PYBIND11_MODULE | ( | orientation | , |
mod | |||
) |
Definition at line 36 of file orientation.cc.
lsst::afw::cameraGeom::PYBIND11_MODULE | ( | cameraSys | , |
mod | |||
) |
Definition at line 62 of file cameraSys.cc.
Definition at line 157 of file CameraSys.h.
CameraSysPrefix const lsst::afw::cameraGeom::ACTUAL_PIXELS = CameraSysPrefix("ActualPixels") |
The actual pixels where the photon lands and electrons are generated (x,y unbinned) This takes into account manufacturing defects, "tree ring" distortions and other such effects.
This is a detector prefix; call Detector.makeCameraSys(ACTUAL_PIXELS) to make a full CameraSys.
Definition at line 38 of file CameraSys.cc.
Field angle coordinates: Angle of a principal ray relative to the optical axis (x,y radians).
The orientation of the x,y axes is the same as FOCAL_PLANE
.
Definition at line 32 of file CameraSys.cc.
Focal plane coordinates: Position on a 2-d planar approximation to the focal plane (x,y mm).
The origin and orientation may be defined by the camera team, but we strongly recommend that the origin be on the optical axis and (if using CCD detectors) that the X axis be aligned along CCD rows.
FOCAL_PLANE
coordinates (the z axis is also relevant). Rectilinear x, y (and z when talking about the location of a detector) on the camera focal plane (mm). For z=0 choose a convenient point near the focus at x, y = 0. Definition at line 30 of file CameraSys.cc.
string lsst.afw.cameraGeom.NullLinearityType = "None" |
Definition at line 37 of file __init__.py.
CameraSysPrefix const lsst::afw::cameraGeom::PIXELS = CameraSysPrefix("Pixels") |
Pixel coordinates: Nominal position on the entry surface of a given detector (x, y unbinned pixels).
For CCD detectors the x axis must be along rows (the direction of the serial register). This is required for our interpolation algorithm to interpolate across bad columns.
This ignores manufacturing imperfections, "tree ring" distortions and all other such effects. It is a uniform grid of rectangular (usually square) pixels.
Definition at line 34 of file CameraSys.cc.
CameraSysPrefix const lsst::afw::cameraGeom::TAN_PIXELS = CameraSysPrefix("TanPixels") |
Tangent-plane pixels on the detector (x, y unbinned pixels)
Converting from PIXELS to TAN_PIXELS has the effect of removing optical distortion (and the distortion due to rectangular pixels) with the point at the center of the detector being unaffected by the transformation.
In detail, PIXELS->TAN_PIXELS is PIXELS->FIELD_ANGLE plus an affine transformation, such that:
This is a detector prefix; call Detector.makeCameraSys(TAN_PIXELS) to make a full CameraSys.
Definition at line 36 of file CameraSys.cc.