Commit 6f38ec15 authored by Sergio Poppi's avatar Sergio Poppi
Browse files

removed schemas from server/Holography dir

parent 8a24423c
Loading
Loading
Loading
Loading
+0 −33
Original line number Diff line number Diff line
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
     Version 0.1, Mon Sep 21 12:59:08 CEST 2009
     Author: Marco Buttu, mbuttu@oa-cagliari.inaf.it
-->
<xs:schema
    targetNamespace="urn:schemas-cosylab-com:DigitalXCorrelator:1.0"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns="urn:schemas-cosylab-com:DigitalXCorrelator:1.0"
    xmlns:cdb="urn:schemas-cosylab-com:CDB:1.0"
    xmlns:baci="urn:schemas-cosylab-com:BACI:1.0"
    elementFormDefault="qualified"
    attributeFormDefault="unqualified">

    <xs:import namespace="urn:schemas-cosylab-com:CDB:1.0" schemaLocation="CDB.xsd" />
    <xs:import namespace="urn:schemas-cosylab-com:BACI:1.0" schemaLocation="BACI.xsd" />

    <xs:complexType name="DigitalXCorrelator">
        <xs:sequence>
        </xs:sequence>
        <!-- Serial port -->
        <xs:attribute name="PORT" type="xs:unsignedShort" use="required" />
        <!-- Serial connection baudrate -->
        <xs:attribute name="BAUDRATE" type="xs:unsignedLong" use="required" />
        <!-- Out file Full Path -->
        <xs:attribute name="OUT_FILE_FP" type="xs:string" use="required" />
        <!-- Max number of attempts until we give the connection up -->
	<xs:attribute name="MAX_ATTEMPTS" type="xs:unsignedShort" use="required" />
	<xs:attribute name="SAMPLES" type="xs:unsignedLong" use="required" />
    </xs:complexType>

    <xs:element name="DigitalXCorrelator" />
</xs:schema>
+0 −107
Original line number Diff line number Diff line
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
	 
-->
<xs:schema xmlns="urn:schemas-cosylab-com:Holography:1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:cdb="urn:schemas-cosylab-com:CDB:1.0" xmlns:baci="urn:schemas-cosylab-com:BACI:1.0" xmlns:mng="urn:schemas-cosylab-com:Managment:1.0" xmlns:bcknd="urn:schemas-cosylab-com:GenericBackend:1.0" targetNamespace="urn:schemas-cosylab-com:Holography:1.0" elementFormDefault="qualified" attributeFormDefault="unqualified">
    <xs:import namespace="urn:schemas-cosylab-com:CDB:1.0" schemaLocation="CDB.xsd"/>
    <xs:import namespace="urn:schemas-cosylab-com:BACI:1.0" schemaLocation="BACI.xsd"/>
    <xs:import namespace="urn:schemas-cosylab-com:GenericBackend:1.0" schemaLocation="GenericBackend.xsd"/>
    <xs:import namespace="urn:schemas-cosylab-com:Managment:1.0" schemaLocation="Managment.xsd"/>


 <!--
    <xs:simpleType name="TBkndConfiguration">
    <xs:annotation>
      
      
        <xs:documentation>
		                                    	Enlist all possible configuration for the backend. many parameters can change for example the number of inputs,
			                                    the input type (BWG,Gregorian....) the used devices and so on. All the configuration are hard coded in the component,
			                                    so in order to add a configuration a piece of code in the component shoud reflect the addition.
        </xs:documentation>
    </xs:annotation>
        <xs:restriction base="xs:string">
                    <xs:enumeration value="22GHzMultiFeed">
                               <xs:annotation>
                                   <xs:documentation>
				                             	the backend is connected to the 14 inputs of the secondary focus 22Ghz 7 feeds receiver 
                                  </xs:documentation>
                              </xs:annotation>
                  </xs:enumeration>
                  <xs:enumeration value="5GHz">
                                <xs:annotation>
                                    <xs:documentation>
                                          the backend is connected to the 2 inputs of the secondary focus 5Ghz receiver, LCP and RCP are reported respectively 
                                    </xs:documentation>
                                </xs:annotation>
                  </xs:enumeration>
      </xs:restriction>
   </xs:simpleType>
   
   -->
   <xs:complexType name="BackendStatusType">
				<xs:complexContent>
				      <xs:restriction base="baci:ROpattern">
				          <xs:attribute name="resolution" type="xs:unsignedLong" use="optional" default="64"/>
				          <xs:attribute name="bitDescription" type="xs:string" use="optional" default="Time_Sync,Busy,Suspended,Sampling,CmdLine,DataLine"/>
				          <xs:attribute name="whenSet" type="xs:string" use="optional" default="0, 1, 1, 1, 0, 0"/>
				          <xs:attribute name="whenCleared" type="xs:string" use="optional" default="2, 3, 3, 3, 2, 2"/>
				          </xs:restriction>
                                        </xs:complexContent>
                                      </xs:complexType>
              <xs:complexType name="HolographyType">
				          <xs:complexContent>
				          <xs:extension base="bcknd:GenericBackendType">
                                            <xs:sequence>
                                              <xs:element name="time" type="baci:ROuLongLong" />
                                              <xs:element name="backendName" type="baci:ROstring" />
                                              <xs:element name="bandWidth" type="baci:ROdoubleSeq" />
                                              <xs:element name="frequency" type="baci:ROdoubleSeq" />
                                              <xs:element name="sampleRate" type="baci:ROdoubleSeq" />
                                              <xs:element name="attenuation" type="baci:ROdoubleSeq" />
                                              <xs:element name="polarization" type="baci:ROlongSeq" />
                                              <xs:element name="bins" type="baci:ROlongSeq" />
                                              <xs:element name="feed" type="baci:ROlongSeq" />
                                              <xs:element name="systemTemperature" type="baci:ROdoubleSeq" />
                                              <xs:element name="inputSection" type="baci:ROlongSeq" />
                                              <xs:element name="inputsNumber" type="baci:ROlong" />
                                              <xs:element name="sectionsNumber" type="baci:ROlong" />
                                              <xs:element name="integration" type="baci:ROlong" />
                                              <xs:element name="status" type="BackendStatusType" />
                                              <xs:element name="busy" type="mng:BooleanType" />
                                            </xs:sequence>
                                          
				          <xs:attribute name="IPAddress" type="xs:string" use="optional"/>
					  <xs:attribute name="SamplingRate" type="xs:unsignedLong" use="optional"/>
				        
					  <xs:attribute name="Port" type="xs:unsignedShort" use="optional"/><!-- timeout (microseconds) applied when trying to connect to the backend --><xs:attribute name="ConnectTimeout" type="xs:unsignedLong" use="optional"/><!-- timeout (microseconds) applied when trying to receive data from the to the backend --><xs:attribute name="CommandLineTimeout" type="xs:unsignedLong" use="optional"/><!-- this time (microseconds) is considered validity period of the properties. When this period is elapsed the component will equery
				         again the hardware -->
				         <xs:attribute name="PropertyRefreshTime" type="xs:unsignedLong" use="optional"/>
					 <xs:attribute name="SamplingTime" type="xs:unsignedLong" use="optional"/>
					 <!-- indicates the default configuration of the backend -->
                                         <xs:attribute name="LogObservedPositions" type="xs:unsignedLong" use="optional"/><!-- 1: connect to antennaBoss: 0    --><xs:attribute name="Configuration" type="xs:string" use="optional"/><!-- Tollerance used when dealing with time synchronization and checks, in particular to deal with jitter beween backend and host computer and with network latencies --><xs:attribute name="TimeTollerance" type="xs:unsignedLong" use="optional"/>
                                         <!-- the cache time (microseconds) for logging repetition filter -->
                                         <xs:attribute name="RepetitionCacheTime" type="xs:unsignedLong" use="optional"/>
                                         <!-- the expire time (microseconds) for logging repetition filter -->
                                         <xs:attribute name="RepetitionExpireTime" type="xs:unsignedLong" use="optional"/>
                                         <!-- data line tcp port -->
                                         <xs:attribute name="DataPort" type="xs:unsignedShort" use="optional"/>
                                         <!-- data line tcp address -->
                                         <xs:attribute name="DataIPAddress" type="xs:string" use="optional"/>
                                         <!-- data line latency (microseconds) -->
                                         <xs:attribute name="DataLatency" type="xs:unsignedLong" use="optional"/>
                                         <!-- Sender thread sleep time (microseconds), sender duty cycle-->
                                         <xs:attribute name="SenderSleepTime" type="xs:unsignedLong" use="optional"/>
                                         <!-- Sender thread response time (microseconds), hart beat time -->
                                         <xs:attribute name="SenderResponseTime" type="xs:unsignedLong" use="optional"/>
                                         <!-- Control thread sleep time (microseconds), that's its duty cycle-->
                                         <xs:attribute name="ControlSleepTime" type="xs:unsignedLong" use="optional"/>
                                         <!-- Control thread response time (microseconds), hart beat time -->
                                         <xs:attribute name="ControlResponseTime" type="xs:unsignedLong" use="optional"/>
                                  </xs:extension>
                                </xs:complexContent>
                          </xs:complexType>
                                   
                                   
       <xs:element name="Holography" type="HolographyType"/>
</xs:schema>