LSSTApplications  10.0+286,10.0+36,10.0+46,10.0-2-g4f67435,10.1+152,10.1+37,11.0,11.0+1,11.0-1-g47edd16,11.0-1-g60db491,11.0-1-g7418c06,11.0-2-g04d2804,11.0-2-g68503cd,11.0-2-g818369d,11.0-2-gb8b8ce7
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: