Index: /tools/Scripts/Logon
===================================================================
--- /tools/Scripts/Logon	(revision 76)
+++ /tools/Scripts/Logon	(revision 76)
@@ -0,0 +1,21 @@
+# This script file is sourced in .bashrc
+#
+# The revision warning is given only once at login.
+
+# User specific aliases and functions
+export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:.
+export PATH=/home/daqct3/fact_repos.svn/tools/Scripts:/usr/local/Trolltech/Qt-4.4.3/bin:.:$PATH
+alias n=nedit
+
+# Check if repository is a mixed or locally modified version (only for login shell))
+if shopt -q login_shell; then
+if [[ `svnversion fact_repos.svn -n` =~ [:M] ]]
+  then
+    xterm -e "echo 'Warning: fact_repos.svn does not have a single revision number';
+    echo 'Make an update before starting a run!';
+    echo 'Contact O.Grimm, T.Kraehenbuehl or Q.Weitzel in case you need help';
+    echo 'Hit return to continue';
+    read;"
+fi
+fi
+
Index: /tools/Scripts/startall
===================================================================
--- /tools/Scripts/startall	(revision 76)
+++ /tools/Scripts/startall	(revision 76)
@@ -0,0 +1,14 @@
+#!/bin/bash
+
+# Script to start all controls
+
+startddd
+
+xterm -e "starthv" &
+sleep 5
+
+startdaq
+
+
+
+
Index: /tools/Scripts/startdaq
===================================================================
--- /tools/Scripts/startdaq	(revision 76)
+++ /tools/Scripts/startdaq	(revision 76)
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+# Script to start DAQ program
+
+pushd /home/daqct3/fact_repos.svn/drsdaq >/dev/null
+./drsdaq
+popd >/dev/null
Index: /tools/Scripts/startddd
===================================================================
--- /tools/Scripts/startddd	(revision 76)
+++ /tools/Scripts/startddd	(revision 76)
@@ -0,0 +1,8 @@
+#!/bin/bash
+
+# Script to start DRS Data Display
+
+export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/qwt-5.2.0/lib/
+pushd /home/daqct3/fact_repos.svn/tools/ddd >/dev/null
+./ddd &
+popd >/dev/null
Index: /tools/Scripts/starthv
===================================================================
--- /tools/Scripts/starthv	(revision 76)
+++ /tools/Scripts/starthv	(revision 76)
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+# Script to start hv control
+
+pushd /home/daqct3/fact_repos.svn/hvcontrol >/dev/null
+./hvcontrol
+popd >/dev/null
Index: /tools/Scripts/updateall
===================================================================
--- /tools/Scripts/updateall	(revision 76)
+++ /tools/Scripts/updateall	(revision 76)
@@ -0,0 +1,34 @@
+#!/bin/bash
+
+# Script to update the fact repository and make all programs
+
+pushd ~/fact_repos.svn >/dev/null
+
+echo -n "Hit enter to update the repository"
+read
+svn update
+
+echo -n "Hit enter to make drsdaq"
+read
+make -C drsdaq
+
+echo -n "Hit enter to make hvcontrol"
+read
+make -C hvcontrol
+
+echo -n "Hit enter to make ddd"
+read
+cd tools/ddd
+qmake
+make
+cd ../..
+
+echo -n "Hit enter to make inspectrawfile"
+read
+make -C tools/inspectrawfile
+
+echo -n "Hit enter to make SocketClient"
+read
+make -C tools/SocketClient
+
+popd >/dev/null
