Commit 9ed5809d authored by TheDebbio's avatar TheDebbio
Browse files

trace + configuration

parent 134e3827
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
	- Author: Andrea Orlati
	-
	- History:
	-   04-08-2011  Created 
-->

<xs:schema
  targetNamespace="urn:schemas-cosylab-com:NoiseMarkPoly:1.0"
  xmlns="urn:schemas-cosylab-com:NoiseMarkPoly: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"
  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="NoiseMarkPolySequence">
		<xs:sequence>	
			<xs:element name="LCoeffs" type="xs:string" />
			<xs:element name="RCoeffs" type="xs:string" />
		</xs:sequence>
	</xs:complexType>
	
	<xs:element name="NoiseMarkPoly" type="NoiseMarkPolySequence"/>

</xs:schema>
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ MAKE_PDF = ON
# Libraries (public and local)
# ----------------------------
 
CDB_SCHEMAS = Feeds ReceiversModeSetup LocalOscillatorLookUpTable \
CDB_SCHEMAS = NoiseMarkPoly Feeds ReceiversModeSetup LocalOscillatorLookUpTable \
			  NoiseMarkLookUpTable TaperLookUpTable \
			  DewarPositionerUpdatingTable DewarPositionerMapping \
			  DewarPositionerActions \
+0 −0

File moved.

+0 −0

File moved.

+10 −0
Original line number Diff line number Diff line
<?xml version='1.0' encoding='ISO-8859-1'?>

<NoiseMarkPoly xmlns="urn:schemas-cosylab-com:NoiseMarkPoly:1.0"
             	xmlns:baci="urn:schemas-cosylab-com:BACI:1.0"
				   xmlns:cdb="urn:schemas-cosylab-com:CDB:1.0"
				   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"	
				   >
	<LCoeffs>"5.88"</LCoeffs>
	<RCoeffs>"5.71"</RCoeffs>
</NoiseMarkPoly>
 No newline at end of file
Loading