• Main INDEX
  • Monthly INDEX
  • PREV
    Make New Entry, Make Followup Entry

    User name R. Michaels

    Log entry time 06:52:30 on March31,2012

    Entry number 368546

    keyword=problem fix : no R-HRS ev140 scalers in data

    There was a problem that no R-HRS scalers were written to
    the datastream as event type 140. Maybe this doesn't matter
    if you have another way, like event scaler.

    I fixed this by uncommenting the line $RIGHT/scread -i
    in ~/scripts/getscaler
    (see below).

    This script is called by both LHRS and RHRS DAQ using their
    respective getruninfo script.
    #!/bin/ksh
    SCRIPTS=/adaqfs/halla/a-onl/scripts
    pidfile=$SCRIPTS/getscalers_pid
    RIGHT=/adaqfs/halla/a-onl/scaler/right
    LEFT=/adaqfs/halla/a-onl/scaler/left
    echo $$>$pidfile
    sleep 2
    while [ 1 = 1 ] ; do
        $LEFT/scread -i
        sleep 2
    # I UNCOMMENT THE FOLLOWING TWO LINES
        #$RIGHT/scread -i
        #sleep 2
    done