]> jspc29.x-matter.uni-frankfurt.de Git - mvdsensorcontrol.git/commitdiff
first detector setup, startup script
authorJan Michel <j.michel@gsi.de>
Mon, 8 Jul 2013 15:56:53 +0000 (17:56 +0200)
committerJan Michel <j.michel@gsi.de>
Mon, 8 Jul 2013 15:56:53 +0000 (17:56 +0200)
tools/startup.pl [new file with mode: 0755]
xml_spielwiese/detectorsetup.xml [new file with mode: 0644]

diff --git a/tools/startup.pl b/tools/startup.pl
new file mode 100755 (executable)
index 0000000..02792e0
--- /dev/null
@@ -0,0 +1,21 @@
+#!/usr/bin/perl 
+
+use warnings;
+use File::chdir;
+
+
+die "DAQOPSERVER not set in environment. Points to trbnetd that provides access to TRB.\n" unless (defined $ENV{'DAQOPSERVER'});
+die "JTAGPATH not set in environment. Points to JTAG tools (e.g. ui.pl).\n" unless (defined $ENV{'JTAGPATH'});
+die "JTAGCONFIGPATH not set in environment. Points to JTAG config files (e.g. chains.ini).\n" unless (defined $ENV{'JTAGCONFIGPATH'});
+
+
+local $CWD = $ENV{'JTAGPATH'};
+qx(./ui.pl -b board01 -o waitbeforestart_6us);
+qx(./ui.pl -b board01 -c newchain1 -o "delay1");
+qx(./ui.pl -b board01 -c newchain1 -o "prog_ram");
+qx(./ui.pl -b board01 -c newchain1 -o "set_timing_10mhz");
+qx(./ui.pl -b board01 -c newchain1 -o "set_inout");
+qx(./ui.pl -b board01 -c newchain1 -o "maps_reset_before_off");
+qx(./ui.pl -b board01 -c newchain1 -o "maps_reset_after_on");
+qx(./ui.pl -b board01 -o trigger_init_sequence);
+
diff --git a/xml_spielwiese/detectorsetup.xml b/xml_spielwiese/detectorsetup.xml
new file mode 100644 (file)
index 0000000..9e4c70a
--- /dev/null
@@ -0,0 +1,33 @@
+<?xml version="1.0"  encoding="utf-8" ?>
+<DetectorSetup xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+               xsi:noNamespaceSchemaLocation="../schema/detectorsetup.xsd"
+               name="Prototype"
+               >
+  <description>The main MVD prototype system setup file</description>
+  <Controller address="0000">
+    <Chain id="0">
+      <Sensor id="0" 
+              config="Filename.xml"
+              enabled="true">
+        <description>Dat Ding in der letzten Reihe rechts</description>
+        <position
+                x="0"
+                y="0"
+                z="0"
+                flippedx="false"
+                flippedy="false"
+                phi="0"
+                />
+
+      </Sensor>
+    </Chain>
+    <Chain id="1">
+      <Sensor id="0">
+      </Sensor>
+      <Sensor id="1">
+      </Sensor>
+      <Sensor id="2">
+      </Sensor>
+    </Chain>
+  </Controller>
+</DetectorSetup>