Commit 53113748 authored by Gino Tosti's avatar Gino Tosti
Browse files

small changes

parent 07ea8a18
Loading
Loading
Loading
Loading
+6 −7
Original line number Diff line number Diff line
@@ -2,9 +2,8 @@

<alarm-system-configuration
    xmlns="urn:schemas-cosylab-com:acsalarm-alarmservice:1.0"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">


	<configuration-property name="Implementation">CERN</configuration-property>
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="urn:schemas-cosylab-com:acsalarm-alarmservice:1.0 http://www.eso.org/schemas/ACS/acsalarm-alarmservice.xsd">
    <configuration-property
        name="Implementation">CERN</configuration-property>
</alarm-system-configuration>
+33 −13
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
    ALMA - Atacama Large Millimiter Array
    (c) Associated Universities Inc., 2010
    
    This library is free software;  you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation;  either
    version 2.1 of the License, or (at your option) any later version.
    
    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY;  without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.
    
    You should have received a copy of the GNU Lesser General Public
    License along with this library; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
    -->
<categories
    xmlns="urn:schemas-cosylab-com:acsalarm-categories:1.0"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <category is-default="true" path="CATEGORY1">
    <description>Test category 1</description>
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="urn:schemas-cosylab-com:acsalarm-categories:1.0 http://www.eso.org/schemas/ACS/acsalarm-categories.xsd ">
    <category
        is-default="true"
        path="ROOT">
        <description>Default category for alarms</description>
        <alarms>
      <FaultFamily>BaciPropTest#testDoubleVar</FaultFamily>
      <FaultFamily>BaciPropTest#testPatternVar</FaultFamily>
      <FaultFamily>TestFF</FaultFamily>
      <FaultFamily>AnotherFF</FaultFamily>
            <FaultFamily>BACIProperty</FaultFamily>
            <FaultFamily>Manager</FaultFamily>
            <FaultFamily>Telescope</FaultFamily>
        </alarms>
    </category>
</categories>
+3 −14
Original line number Diff line number Diff line
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
  - Sample configuration of alarm reduction links.
 -->
<reduction-definitions 
   xmlns="urn:schemas-cosylab-com:AcsAlarmSystem:1.0"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

<!--
	<links-to-create/>

	<thresholds/>
-->

<reduction-definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="urn:schemas-cosylab-com:AcsAlarmSystem:1.0 http://www.eso.org/schemas/ACS/AcsAlarmSystem.xsd"
 xmlns="urn:schemas-cosylab-com:AcsAlarmSystem:1.0">
</reduction-definitions>
−8 KiB

File deleted.

+22 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<fault-family name="Telescope" 
	xmlns="urn:schemas-cosylab-com:acsalarm-fault-family:1.0" 
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" >
  <alarm-source>ALARM_SYSTEM_SOURCES</alarm-source>
  <help-url>http://tempuri.org</help-url>
  <contact name="ACS developer"/>
  <fault-code value="1">
    <priority>1</priority>
    <problem-description>BACI property with a new FF, FM</problem-description>
  </fault-code>
  <fault-code value="2">
    <priority>1</priority>
    <problem-description>BACI property with a new FF, FM (LOW)</problem-description>
  </fault-code>
  <fault-code value="3">
    <priority>1</priority>
    <problem-description>BACI property with a new FF, FM (HIGH)</problem-description>
  </fault-code>
  <fault-member-default>
  </fault-member-default>
</fault-family>
Loading