-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathHinOTORI.ice
51 lines (46 loc) · 926 Bytes
/
HinOTORI.ice
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
module HinOTORI {
exception Error {
string reason;
};
interface Camera {
["amd"] void Take(
double expt,
string filename,
bool shutter,
string header )
throws Error;
double GetTemperature( );
void SetTemperature( double setp );
void TurnOnCooler( );
};
interface Telescope {
double GetFocusZ( );
void SetFocusZ( double z );
void OpenMirror( );
void CloseMirror( );
};
interface Mount {
double GetRa( );
double GetCmdRa( );
double GetDec( );
double GetCmdDec( );
double GetAz( );
double GetEl( );
void SetRa( double radeg );
void SetDec( double decdeg );
void Goto( );
void Move( double da, double dd );
};
interface Dome {
void slitOpen( );
void slitClose( );
int CurrentDirection();
int TargetDirection();
bool Alarm1();
bool Alarm2();
bool Alarm3();
bool isSlitOpened();
bool isSlitClosed();
bool isDomeOrigin();
};
};