-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
04bacb5
commit 0e3689b
Showing
3 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Adding Reflector xml which allows opening and closing the flatfield reflector |
14 changes: 14 additions & 0 deletions
14
python/lsst/ts/xml/data/sal_interfaces/Reflector/Reflector_Commands.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<?xml-stylesheet type="text/xsl" href="http://lsst-sal.tuc.noao.edu/schema/SALCommandSet.xsl"?> | ||
<SALCommandSet xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://lsst-sal.tuc.noao.edu/schema/SALCommandSet.xsd"> | ||
<SALCommand> | ||
<Subsystem>Reflector</Subsystem> | ||
<EFDB_Topic>Reflector_command_switchOn</EFDB_Topic> | ||
<Description>Switch on reflector.</Description> | ||
</SALCommand> | ||
<SALCommand> | ||
<Subsystem>Reflector</Subsystem> | ||
<EFDB_Topic>Reflector_command_switchOff</EFDB_Topic> | ||
<Description>Switch off reflector.</Description> | ||
</SALCommand> | ||
</SALCommandSet> |
22 changes: 22 additions & 0 deletions
22
python/lsst/ts/xml/data/sal_interfaces/Reflector/Reflector_Events.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<?xml-stylesheet type="text/xsl" href="http://lsst-sal.tuc.noao.edu/schema/SALEventSet.xsl"?> | ||
<SALEventSet xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://lsst-sal.tuc.noao.edu/schema/SALEventSet.xsd"> | ||
<Enumeration> | ||
ReflectorState_Off=0, | ||
ReflectorState_On=1, | ||
ReflectorState_Unknown=2, | ||
ReflectorState_Error=3, | ||
</Enumeration> | ||
<SALEvent> | ||
<Subsystem>Reflector</Subsystem> | ||
<EFDB_Topic>Reflector_logevent_reflectorState</EFDB_Topic> | ||
<Description>Reflector state change</Description> | ||
<item> | ||
<EFDB_Name>reflectorState</EFDB_Name> | ||
<Description>Reflector state; a ReflectorState enum.</Description> | ||
<IDL_Type>int</IDL_Type> | ||
<Units>unitless</Units> | ||
<Count>1</Count> | ||
</item> | ||
</SALEvent> | ||
</SALEventSet> |