CARMA C++
CalPos.h
Go to the documentation of this file.
1 #ifndef SZA_UTIL_CALPOS_H
2 #define SZA_UTIL_CALPOS_H
3 
11 namespace sza {
12  namespace util {
13 
17  class CalPos {
18  public:
19 
20  enum Pos {
21  NONE = 0x0,
22  SKY = 0x1,
23  AMBIENT = 0x2,
24  HOTLOAD = 0x4,
25  ALL = SKY | AMBIENT | HOTLOAD
26  };
27 
28  }; // End class CalPos
29 
30  } // End namespace util
31 } // End namespace sza
32 
33 
34 
35 #endif // End #ifndef SZA_UTIL_CALPOS_H
Class to enumerate recognized calibrator positions.
Definition: CalPos.h:17