CARMA C++
CalibratorControl.idl
1 #ifndef _CALIBRATORIDL
2 #define _CALIBRATORIDL
3 
5 
6 module carma {
7 
8  module antenna {
9 
10  module common {
11 
18  const string CALIBRATOR_NAME = "Calibrator";
19 
26  interface CalibratorControl {
39  enum Position {
40  SKY,
43  PARTIAL
44  };
45 
60  void setPos( in CalibratorControl::Position pos,
61  in unsigned long seqNo ) raises (carma::util::UserException);
62 
63  }; // End Calibrator
64 
65  }; // End common module
66 
67  }; // End antenna module
68 
69 }; // End carma module
70 
71 #endif // _CALIBRATORIDL
72 
Position
A calibrator position enumerator.
Generic Carma variant of CORBA::UserException.
CORBA User Exception for carma::util.
const string CALIBRATOR_NAME
CalibratorControl Distributed Object Name.