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::CameraSysPrefix Class Reference

#include <CameraSys.h>

Public Member Functions

 CameraSysPrefix (std::string const &sysName)
 
std::string getSysName () const
 
bool operator== (CameraSysPrefix const &rhs) const
 
bool operator!= (CameraSysPrefix const &rhs) const
 

Private Attributes

std::string _sysName
 coordinate system name More...
 

Detailed Description

Camera coordinate system prefix

Used for coordinate systems that are detector-based before the detector name is known (e.g. for constants such as PIXELS).

This is Jim Bosch's clever idea for simplifying Detector.convert; CameraSys is always complete and CameraSysPrefix is not.

Definition at line 46 of file CameraSys.h.

Constructor & Destructor Documentation

lsst::afw::cameraGeom::CameraSysPrefix::CameraSysPrefix ( std::string const &  sysName)
inlineexplicit
Parameters
sysNamecoordinate system name

Definition at line 48 of file CameraSys.h.

50  : _sysName(sysName) {}
std::string _sysName
coordinate system name
Definition: CameraSys.h:65

Member Function Documentation

std::string lsst::afw::cameraGeom::CameraSysPrefix::getSysName ( ) const
inline

Get coordinate system name

Definition at line 55 of file CameraSys.h.

55 { return _sysName; };
std::string _sysName
coordinate system name
Definition: CameraSys.h:65
bool lsst::afw::cameraGeom::CameraSysPrefix::operator!= ( CameraSysPrefix const &  rhs) const
inline

Definition at line 61 of file CameraSys.h.

61  {
62  return !(*this == rhs);
63  }
bool lsst::afw::cameraGeom::CameraSysPrefix::operator== ( CameraSysPrefix const &  rhs) const
inline

Definition at line 57 of file CameraSys.h.

57  {
58  return _sysName == rhs.getSysName();
59  }
std::string _sysName
coordinate system name
Definition: CameraSys.h:65

Member Data Documentation

std::string lsst::afw::cameraGeom::CameraSysPrefix::_sysName
private

coordinate system name

Definition at line 65 of file CameraSys.h.


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