LSSTApplications  10.0-2-g4f67435,11.0.rc2+1,11.0.rc2+12,11.0.rc2+3,11.0.rc2+4,11.0.rc2+5,11.0.rc2+6,11.0.rc2+7,11.0.rc2+8
LSSTDataManagementBasePackage
Public Member Functions | Private Attributes | List of all members
lsst.afw.cameraGeom::CameraPoint Class Reference

#include <CameraPoint.h>

Public Member Functions

 CameraPoint (geom::Point2D point, CameraSys const &cameraSys)
 
geom::Point2D getPoint () const
 
CameraSys getCameraSys () const
 
bool operator== (CameraPoint const &other) const
 
bool operator!= (CameraPoint const &other) const
 

Private Attributes

geom::Point2D _point
 2-d point More...
 
CameraSys _cameraSys
 camera coordinate system More...
 

Detailed Description

A Point2D with associated camera coordinate system

Definition at line 37 of file CameraPoint.h.

Constructor & Destructor Documentation

lsst.afw.cameraGeom::CameraPoint::CameraPoint ( geom::Point2D  point,
CameraSys const &  cameraSys 
)
inline

Definition at line 39 of file CameraPoint.h.

39 : _point(point), _cameraSys(cameraSys) {}
geom::Point2D _point
2-d point
Definition: CameraPoint.h:49
CameraSys _cameraSys
camera coordinate system
Definition: CameraPoint.h:50

Member Function Documentation

CameraSys lsst.afw.cameraGeom::CameraPoint::getCameraSys ( ) const
inline

Definition at line 41 of file CameraPoint.h.

41 { return _cameraSys; }
CameraSys _cameraSys
camera coordinate system
Definition: CameraPoint.h:50
geom::Point2D lsst.afw.cameraGeom::CameraPoint::getPoint ( ) const
inline

Definition at line 40 of file CameraPoint.h.

40 { return _point; }
geom::Point2D _point
2-d point
Definition: CameraPoint.h:49
bool lsst.afw.cameraGeom::CameraPoint::operator!= ( CameraPoint const &  other) const
inline

Definition at line 46 of file CameraPoint.h.

46 { return !(*this == other); }
bool lsst.afw.cameraGeom::CameraPoint::operator== ( CameraPoint const &  other) const
inline

Definition at line 43 of file CameraPoint.h.

43  {
44  return (this->getPoint() == other.getPoint()) && (this->getCameraSys() == other.getCameraSys()); }
geom::Point2D getPoint() const
Definition: CameraPoint.h:40
CameraSys getCameraSys() const
Definition: CameraPoint.h:41

Member Data Documentation

CameraSys lsst.afw.cameraGeom::CameraPoint::_cameraSys
private

camera coordinate system

Definition at line 50 of file CameraPoint.h.

geom::Point2D lsst.afw.cameraGeom::CameraPoint::_point
private

2-d point

Definition at line 49 of file CameraPoint.h.


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