Loading Common/Interfaces/AntennaInterface/idl/Supervisor.idl +0 −15 Original line number Diff line number Diff line Loading @@ -12,13 +12,6 @@ module Antenna { struct SupervisorDataBlock { ACS::Time timeMark; boolean tracking; }; const string SUPERVISOR_DATA_CHANNEL = "SupervisorData"; interface Supervisor: ACS::CharacteristicComponent, Management::CommandInterpreter Loading Loading @@ -131,14 +124,6 @@ module Antenna { double getSunSafeLimit() raises (ComponentErrors::ComponentErrorsEx); /** Return true when the Supervisor is not setting any offset related * to the Sun avoidance * * @throw ComponentErrors::ComponentErrorsEx */ boolean isTracking() raises (ComponentErrors::ComponentErrorsEx); /** This property reports the status of the Supervisor. * The returned pattern is a 3 bits field with the following meaning: * Loading Common/Servers/PySupervisor/src/Supervisor/SupervisorImpl.py +0 −9 Original line number Diff line number Diff line Loading @@ -44,10 +44,8 @@ class SupervisorImpl(POA, cc, services, lcycle): 'supervisorGetSunSafeLimit': ('getSunSafeLimit', ()), 'supervisorGetSunDistance': ('getSunDistance', ()), 'supervisorGetWind': ('getAverageWind', ()), 'supervisorIsTracking': ('isTracking', ()), } def __init__(self): cc.__init__(self) services.__init__(self) Loading @@ -61,10 +59,6 @@ class SupervisorImpl(POA, cc, services, lcycle): t = Thread(target=thread, daemon=True) t.start() def initialize(self): # addProperty(self, 'status', devio_ref=StatusDevIO()) pass def cleanUp(self): self.stop_threads = True Loading Loading @@ -133,9 +127,6 @@ class SupervisorImpl(POA, cc, services, lcycle): def getAverageWind(self): return self.wind def isTracking(self): return True def loadWindClient(self): try: if self.windClient and self.windClient.isLoggedIn(): Loading Loading
Common/Interfaces/AntennaInterface/idl/Supervisor.idl +0 −15 Original line number Diff line number Diff line Loading @@ -12,13 +12,6 @@ module Antenna { struct SupervisorDataBlock { ACS::Time timeMark; boolean tracking; }; const string SUPERVISOR_DATA_CHANNEL = "SupervisorData"; interface Supervisor: ACS::CharacteristicComponent, Management::CommandInterpreter Loading Loading @@ -131,14 +124,6 @@ module Antenna { double getSunSafeLimit() raises (ComponentErrors::ComponentErrorsEx); /** Return true when the Supervisor is not setting any offset related * to the Sun avoidance * * @throw ComponentErrors::ComponentErrorsEx */ boolean isTracking() raises (ComponentErrors::ComponentErrorsEx); /** This property reports the status of the Supervisor. * The returned pattern is a 3 bits field with the following meaning: * Loading
Common/Servers/PySupervisor/src/Supervisor/SupervisorImpl.py +0 −9 Original line number Diff line number Diff line Loading @@ -44,10 +44,8 @@ class SupervisorImpl(POA, cc, services, lcycle): 'supervisorGetSunSafeLimit': ('getSunSafeLimit', ()), 'supervisorGetSunDistance': ('getSunDistance', ()), 'supervisorGetWind': ('getAverageWind', ()), 'supervisorIsTracking': ('isTracking', ()), } def __init__(self): cc.__init__(self) services.__init__(self) Loading @@ -61,10 +59,6 @@ class SupervisorImpl(POA, cc, services, lcycle): t = Thread(target=thread, daemon=True) t.start() def initialize(self): # addProperty(self, 'status', devio_ref=StatusDevIO()) pass def cleanUp(self): self.stop_threads = True Loading Loading @@ -133,9 +127,6 @@ class SupervisorImpl(POA, cc, services, lcycle): def getAverageWind(self): return self.wind def isTracking(self): return True def loadWindClient(self): try: if self.windClient and self.windClient.isLoggedIn(): Loading