7 # ------------------------------------------------------------------------------------------
 
    9 #                            Example script to run JDAQDriver.
 
   11 # ------------------------------------------------------------------------------------------
 
   15 if [ -z $JPP_DIR ]; then
 
   16     echo "Variable JPP_DIR undefined."
 
   21 source $JPP_DIR/setenv.sh $JPP_DIR >& /dev/null
 
   27 set_variable  SERVER          localhost
 
   28 set_variable  LOGGER          localhost
 
   31 set_variable  TIMEOUT_S       3
 
   32 set_variable  RUNTIME_S       1
 
   33 set_variable  HOST            `get_ip_address`
 
   34 set_variable  HOST1           $HOST
 
   35 set_variable  HOST2           $HOST
 
   36 set_variable  HOST3           $HOST
 
   37 set_variable  HOST4           $HOST
 
   38 set_variable  PORT            5552
 
   39 set_variable  EVENT_NUMBER    1234
 
   42 # re-start ligier for command and logger messages
 
   49 # example to read event associated data from a file
 
   51 cat>${TMPDIR:-/tmp}/ev_init.txt<<EOF
 
   58 cat>${TMPDIR:-/tmp}/driver.txt<<EOF
 
   60 # To avoid unnecessary shell processes, the process I/O is redirected to /dev/null and the ssh command is quoted.
 
   61 # Note that process with extension /- will deliberately crash during the configure transition
 
   62 # and process with extension /+ will sleep forever during the exit transition.
 
   64 process  JDAQDemoClient/A  $HOST1  (setenv ROOTSYS $ROOTSYS && source $JPP_DIR/setenv.csh $JPP_DIR && JDAQDemoClient  -u %/A       -H \$SERVER\$  -M \$LOGGER\$ -d $DEBUG  </dev/null >&/dev/null) &;
 
   65 process  JDAQDemoClient/B  $HOST2  (setenv ROOTSYS $ROOTSYS && source $JPP_DIR/setenv.csh $JPP_DIR && JDAQClientStarter  -H $HOST3:$PORT  -m "-H \$SERVER\$  -M \$LOGGER\$ -d $DEBUG");
 
   66 process  JDAQDemoClient/-  $HOST3  (setenv ROOTSYS $ROOTSYS && source $JPP_DIR/setenv.csh $JPP_DIR && JDAQDemoClient  -u \$NAME\$  -H \$SERVER\$  -M \$LOGGER\$ -d $DEBUG  </dev/null >&/dev/null) &;
 
   67 process  JDAQDemoClient/+  $HOST4  (setenv ROOTSYS $ROOTSYS && source $JPP_DIR/setenv.csh $JPP_DIR && JDAQDemoClient  -u \$NAME\$  -H \$SERVER\$  -M \$LOGGER\$ -d $DEBUG  </dev/null >&/dev/null) &;
 
   71 event ev_init:$EVENT_NUMBER      { RC_CMD %<${TMPDIR:-/tmp}/ev_init.txt>%from me%<${TMPDIR:-/tmp}/ev_init.txt>% }
 
   72 event ev_configure { RC_CMD 2 1 }
 
   74 # Client with extension /- should have crashed by now.
 
   75 # So, put failed clients to sleep with names containing given character sequence.
 
   77 filter JDAQDemoClient/-;
 
   79 event ev_start     { RC_CMD $RUN 1 }
 
   83 event ev_pause     { RC_CMD }
 
   84 event ev_stop      { RC_CMD }
 
   85 event ev_reset     { RC_CMD }
 
   86 event ev_off       { RC_CMD }
 
   91 # The following process is assumed to run 'forever', i.e.
 
   92 # it is started before the driver and continues thereafter.
 
   93 # It is therefore killed by hand at the end of the show.
 
   95 JDAQDemoClient -u JDAQDemoClient/B -P $PORT &
 
   99 JDAQDriver -H $SERVER -M $LOGGER -d $DEBUG -t $TIMEOUT_S -f ${TMPDIR:-/tmp}/driver.txt -c