|
Isis 3.0 Developer's Reference (API) |
Home |
00001 #ifndef hiLab_h 00002 #define hiLab_h 00003 00025 #include "Cube.h" 00026 #include "Pvl.h" 00027 00028 namespace Isis { 00049 class HiLab { 00050 public: 00051 HiLab(Cube *cube); 00052 00059 int getCpmmNumber() { 00060 return p_cpmmNumber; 00061 }; 00062 00069 int getChannel() { 00070 return p_channel; 00071 }; 00072 00079 int getBin() { 00080 return p_bin; 00081 }; 00082 00089 int getTdi() { 00090 return p_tdi; 00091 }; 00092 00100 int getCcd(); 00101 00102 private: 00103 int p_cpmmNumber; 00105 int p_channel; 00107 int p_bin; 00109 int p_tdi; 00111 }; 00112 }; 00113 #endif