AIDA GELINA BRIKEN nToF CRIB ISOLDE CIRCE nTOFCapture DESPEC DTAS EDI_PSA 179Ta CARME StellarModelling DCF K40
  AIDA, Page 36 of 46  ELOG logo
ID Date Author Subject
  218   Wed May 11 06:00:56 2016 AE, VP, BM (Byul Moon)FEE64 <-> MACB trigger mapping
Here is the mapping of the trigger output of MAC-B modules to FEE64 modules

3.1   NNAIDA5   veto-X2
3.2   NNAIDA14  D4-X2
3.3   NNAIDA13  D5-X2
3.4   NNAIDA6   D6-X2

4.1   NNAIDA28   -
4.2   NNAIDA27  D1-Y1
4.3   NNAIDA20  D2-Y1
4.4   NNAIDA19  D3-Y1

5.1   NNAIDA12  D4-Y1
5.2   NNAIDA11  D5-Y1
5.3   NNAIDA3   veto-Y1
5.4   NNAIDA4   D6-Y1

6.1   NNAIDA25  D1-X1
6.2   NNAIDA17  D3-X1
6.3   NNAIDA18  D2-X1
6.4   NNAIDA26   -

8.1   NNAIDA29   -
8.2   NNAIDA30  D1-X2
8.3   NNAIDA22  D2-X2
8.4   NNAIDA21  D3-X2

9.1   NNAIDA15  D4-Y2
9.2   NNAIDA16  D5-Y2
9.3   NNAIDA7   D6-Y2
9.4   NNAIDA8   veto-Y2

10.1   NNAIDA1   veto-X1
10.2   NNAIDA9   D5-X1
10.3   NNAIDA10  D4-X1
10.4   NNAIDA2   D6-X1

11.1   NNAIDA23  D2-Y2
11.2   NNAIDA32  D1-Y2
11.3   NNAIDA31   -
11.4   NNAIDA24  D3-Y2


MACB modules are labeled, from left to right, according to their position in the NIM crate.

D1 is the most upstream DSSD, and veto the most downstream one.
Attachment 1: dssd_layout.jpg
dssd_layout.jpg
  217   Wed May 11 05:49:51 2016 AEVHDL update to FEE_GF_Feb16_16
The firmware of all FEEs was updated to the version in FEE_GF_Feb16_16.bin (https://elog.ph.ed.ac.uk/AIDA/215).
This provides a 25 MHz clock output from MACB, plus a manual reset request signal.

Attached are screen captures from smooth updating procedure. 

Checked correlation request signal from output2 of MACB: it's a pulse with ~180ns width and -0.7V. We could only
observe it when selecting 'act no all FEEs' in Correlation Control browser window (looking at MACB module on the
top of the tree). However, we didn't check that the output is produced from only one MACB module, if we select
the one of the corresponding FEE.
Attachment 1: FEEprogram1.png
FEEprogram1.png
Attachment 2: FEEprogram2.png
FEEprogram2.png
Attachment 3: FEEprogram3.png
FEEprogram3.png
  216   Tue May 10 16:03:50 2016 TD & VFEPLatest version of Rly16
Do not forget to backup the current versions of the attached files before
installing the latest versions. The latest version features the sequential 
power up of each of the eight mains relays - this will help minimise instantaneous
network loads during power/boot up.

On 05/05/2016 06:45, Thomas Davinson wrote:


 Hello

 Coould we have a copy of the latest USB power replay .tml file please?
 Our current version does not permit sequential power on and Patrick says
 that may be helpful when attempting to start 32 FEEs.

   attached
    =>   /MIDAS/TclHttpd/Aida/Rly16


 Vic 
Attachment 1: Rly16.js


function click_SEQ (Obj) {
    Obj.Widget.value = "SEQ";
    Obj.submit();
}
function click_ALLON (Obj) {
    Obj.Widget.value = "ALLON";
    Obj.submit();
}
function click_ALLOFF (Obj) {
    Obj.Widget.value = "ALLOFF";
    Obj.submit();
}

function click_RELAYON (Obj,vl) {
    Obj.Widget.value = "RELAYON" + " " + vl;
    Obj.submit();
}

function click_RELAYOFF (Obj,vl) {
    Obj.Widget.value = "RELAYOFF" + " " + vl;
    Obj.submit();
}

Attachment 2: Rly16.tcl


# variable started 0

if {![info exists started]} {variable started 0}

if {$started != 0} {

     variable JS ""
     variable LogFlag

     if {$LogFlag == 1} {InsertLog "Last Updated: [clock format [clock seconds] -format "%B %d, %Y %H:%M:%S"]"}

    do_click
}

if {$started == 0} {           ;#  first time load code and define local variables
    set started 1

    variable LogText ""
    variable LogFlag 0
    variable LogCount 0

    variable ShowLogFlag 0

    variable JS ""

    variable Port   /dev/ttyUSB0
    variable Baud 19200
    variable Data 8
    variable Parity n
    variable Stop 2

    variable Flow none

    variable channelId 0

    variable VERSION 0
    variable DC 0
    variable STATUS 0


    proc show_variables {} {
        variable LogFlag
        variable LogCount
        variable ShowLogFlag


         InsertLog "LogFlag=$LogFlag; LogCount=$LogCount; ShowLogFlag=$ShowLogFlag"
         InsertLog "DC=[DC]; Status=[Status]"
    }

proc do_connect {} {
   global env
   variable channelId
   variable Port
   variable Baud
   variable Data
   variable Parity
   variable Stop
   variable Flow

   if {$channelId != 0} {
       InsertLog "Already connected: Disconnect first"
       return
   }

       for {set p 0} {$p < 8} {incr p} {

          set Port /dev/ttyUSB$p

          if {$env(os) == "Linux" || $env(os) == "Linux64"} {
               set z [catch {exec sudo -n chmod 666 $Port} m]   ;# need rw access to serial port
               if {$z != 0} {InsertLog "failed to change access mode to I/O port\n$m"; continue}
          }

          set rc [catch {open $Port RDWR} m]
          if {$rc == 0} {set channelId $m; InsertLog "Using $Port"} else {InsertLog "$Port: $m"}

          if {$channelId != 0} {
             fconfigure $channelId -mode $Baud,$Parity,$Data,$Stop -handshake $Flow
             fconfigure $channelId -blocking no -buffering none -translation binary
             fileevent $channelId readable GetData

             set V [VERS]
             InsertLog "firmware version = $V"
             if {$V > 0} {break} else {do_disconnect}
         }
      }
}

proc do_disconnect {} {
   variable channelId
   variable Port

   if {$channelId == 0} {
#       InsertLog "Already disconnected"
   } else {
       set z [catch {close $channelId} m]
       set channelId 0
   }
}

proc SetOff {n} {
    variable channelId

   if {$channelId == 0} {do_connect}

   if {$channelId == 0} {InsertLog "Not connected"; return}

   switch $n {
      1  {puts $channelId "o"}
      2  {puts $channelId "p"}
      3  {puts $channelId "q"}
      4  {puts $channelId "r"}
      5  {puts $channelId "s"}
      6  {puts $channelId "t"}
      7  {puts $channelId "u"}
      8  {puts $channelId "v"}
      default {}
   }

   Status
}

proc SetOn {n} {
    variable channelId

   if {$channelId == 0} {do_connect}

   if {$channelId == 0} {InsertLog "Not connected"; return}

   switch $n {
      1  {puts $channelId "e"}
      2  {puts $channelId "f"}
      3  {puts $channelId "g"}
      4  {puts $channelId "h"}
      5  {puts $channelId "i"}
      6  {puts $channelId "j"}
      7  {puts $channelId "k"}
      8  {puts $channelId "l"}
      default {}
   }

   Status
}

proc SequenceOn {} {
    variable channelId

   if {$channelId == 0} {do_connect}

   if {$channelId == 0} {InsertLog "Not connected"; return}

   foreach chan { 1 2 3 4 5 6 7 8 } {
	SetOn $chan
	after 500
	}
}


proc AllOff {} {
    variable channelId

   if {$channelId == 0} {do_connect}

   if {$channelId == 0} {InsertLog "Not connected"; return}

   set z [catch {puts $channelId "n"} m]
   if {$z != 0} {return}

   Status
}

proc AllOn {} {
    variable channelId

   if {$channelId == 0} {do_connect}

   if {$channelId == 0} {InsertLog "Not connected"; return}

   set z [catch {puts $channelId "d"} m]
   if {$z != 0} {return}

   Status
}

proc DC {} {
    variable channelId
    variable DC

   if {$channelId == 0} {do_connect}

   if {$channelId == 0} {InsertLog "Not connected"; return}

   set z [catch {puts $channelId "\]"} m]
   if {$z != 0} {return}
after 200
   set DC [expr 0x[GetData]]
}

proc VERS {} {
    variable channelId
    variable VERSION

   if {$channelId == 0} {do_connect}

   if {$channelId == 0} {InsertLog "Not connected"; return}

   set z [catch {puts $channelId "Z"} m]
   if {$z != 0} {return}
after 200
   set VERSION [GetData]
}

proc Status {} {
    variable channelId
    variable STATUS

   if {$channelId == 0} {do_connect}

   if {$channelId == 0} {InsertLog "Not connected"; return}

   set z [catch {puts $channelId "["} m]
   if {$z != 0} {return}
after 500
   set z [catch {set STATUS [expr 0x[GetData]]} m]
}

proc GetData {args} {
    variable channelId

   if {$channelId == 0} {do_connect}

   if {$channelId == 0} {InsertLog "Not connected"; return 0}

    set data [read $channelId 132]
    if {[string length $data] == 0} {return 0}

    set line ""
    for {set i 0} {$i < [string length $data]} {incr i} {
        set c1 [string range $data $i $i]
        binary scan $c1 H2 c2
        append line "[set c2]"
    }

    return "$line"
}

   proc do_click {} {
       variable cgidata
       variable started
       variable LogFlag
       variable ShowLogFlag
       variable JS

       set cgidata [ncgi::nvlist]

       if {$LogFlag == 1} {InsertLog "cgidata= ([llength $cgidata]) $cgidata"}

       if {[llength $cgidata] == 0} then {return}

       if {[llength $cgidata] < 2} then {
           InsertLog "CGI data is too short: $cgidata"
       } else {
           if {[lindex $cgidata 0] != "Widget"} then {
               InsertLog "Invalid CGI data: $cgidata"
           } else {

               set w  [first  [lindex $cgidata 1]]
               set vl [second [lindex $cgidata 1]]

               switch -glob $w {

                   RESET    {catch {do_disconnect}; set started 0}
                   CLEAR    {EmptyLog}
                   ELOG     {PrintLog}
                   RELOAD   {}
                   VARIABLES {show_variables}

                   HIDE     {set ShowLogFlag 0}
                   SHOW     {set ShowLogFlag 1}
                   LOGON    {set LogFlag 1}
                   LOGOFF   {set LogFlag 0}

                   SEQ       {SequenceOn}
                   ALLON     {AllOn}
                   ALLOFF    {AllOff}
                   RELAYON   {SetOn $vl}
                   RELAYOFF  {SetOff $vl}

                   MainLog {}
                   undefined {}
                   default {InsertLog "unexpected CGI data: [lindex $w 0]: $cgidata"}
               }
           }
       }
       catch {Status}
    }
... 6 more lines ...
Attachment 3: Rly16.tml

[Doc_Dynamic]

<!
[global env; set env(MIDASBASE) /MIDAS]
>

[global env; source [file join $env(MIDASBASE) TclHttpd Html settings.tml]]

<!
[global Httpd; upvar #0 Httpd[set Httpd(currentSocket)] data; set ClientIPAddress $data(ipaddr); set MyInfo $data(self)]
>

<html>
<head>

<title>Rly16 Service @ [global env; set env(ComputerName)]</title>

<script type="text/javascript" language="JavaScript" src="/js/Common.js"></script>
<script type="text/javascript" language="JavaScript" src="/js/FormChek.js"></script>
<script type="text/javascript" language="JavaScript" src="Rly16.js"></script>

</head>

<body>

<NOSCRIPT>
<hr>
<h2>
Your browser does not support JavaScript.
This service requires a JavaScript compatible browser. </h2> <hr> </NOSCRIPT> <p align=center> <table cellpadding=0 cellspacing=0 border=0 width=100%> <tr> <td align=left> <font size=4><b>Rly16 Control @ [set MyInfo]</b></font> </td> <td align=right> <font size=4><b>client address is [set ClientIPAddress]</b></font> </td> <td align=right> <input type=image src="/images/midas.gif" name=MIDAS title="MIDAS Home Page" onClick="click_MIDAS()"> <input type=image src="/images/tclp.gif" name=TCL title="Tcl/Tk Home Page" onClick="click_TCL()"> </td> </tr> </table> </p> <hr> <! [namespace eval Rly16 {global env; cd [file join $env(MIDASBASE) TclHttpd Html AIDA]}] [namespace eval Rly16 { global env source [file join $env(MIDASBASE) TclHttpd tcl Common common.tcl] cd [file join $env(MIDASBASE) TclHttpd Html AIDA Rly16] source Rly16.tcl }] > <form action=[ncgi::urlStub] name=Rly16 method=post> <input type=hidden name=Widget value=Rly16> <p align="center"> <table cellpadding=0 cellspacing=0 border=0 width=100%> <tr> <td width=33% align=left> Port: [namespace eval Rly16 {set Port}] </td> <td width=33% align=left> Version: [namespace eval Rly16 {VERS; set VERSION}] </td> <td width=33% align=left> DC: [namespace eval Rly16 {DC; set vl [expr $DC/10.0]V}] </td> </tr> </table> </p> <p align=center> <table cellpadding=0 cellspacing=0 border=0 width=100%> <tr> [namespace eval Rly16 { set html "<td width=12% align=left>Switch ON</td>" set j 0 for {set i 1} {$i <= 8} {incr i} { append html "<td width=11% align=left>" if {([expr $STATUS >> $j] & 1) == 0} { append html "<input type=button name=RON$i value=\"Relay $i\" onClick=\"click_RELAYON(document.Rly16, $i)\">" } append html "</td>" incr j } set html }] </tr> <tr> [namespace eval Rly16 { set html "<td width=12% align=left>Switch OFF</td>" set j 0 for {set i 1} {$i <= 8} {incr i} { append html "<td width=11% align=left>" if {([expr $STATUS >> $j] & 1) == 1} { append html "<input type=button name=ROFF$i value=\"Relay $i\" onClick=\"click_RELAYOFF(document.Rly16, $i)\">" } append html "</td>" incr j } set html }] </tr> </table> </p> <p align=center> <input type=button name=SEQ value="Sequence ALL On" onClick="click_SEQ(document.Rly16)"> <input type=button name=ALLON value="Switch ALL On" onClick="click_ALLON(document.Rly16)"> <input type=button name=ALLOFF value="Switch ALL Off" onClick="click_ALLOFF(document.Rly16)"> </p> [namespace eval Rly16 { if {$ShowLogFlag == 1} then { set html "" append html "<p align=center>" append html "<textarea name=MainLog readonly=true wrap=soft rows=12 cols=80>" append html [set LogText] append html "</textarea>" append html "</p>" set html } }] <p> <input type=button name=CLEAR value="Empty Log Window" onClick="click_clear(document.Rly16)" title="Empty the log window"> <input type=button name=ELOG value="Send Log Window to ELog" onClick="click_elog(document.Rly16)" title="Sends the contents of the log window to your ELog"> <input type=button name=RELOAD value="Reload" onClick="click_reload(document.Rly16)" title="Reload the page and cause the displayed hardware parameters to be refreshed"> <input type=button name=RESET value="Reset" onClick="click_reset(document.Rly16)" title="Cause the page code to be fully reloaded in the server"> <input type=button name=VARIABLES value="Show Variables" onClick="click_variables(document.Rly16)" title="Display selected internal variables in the log window"> [namespace eval Rly16 { if {$ShowLogFlag == 1} then { set html "<input type=button name=HIDE value=\"Hide Log Window\" onClick=\"click_hidelog(document.Rly16)\" title=\"Do not display the log window\">" } else { set html "<input type=button name=SHOW value=\"Show Log Window\" onClick=\"click_showlog(document.Rly16)\" title=\"Cause the log window to be displayed\">" } set html }] [namespace eval Rly16 { if {$LogFlag == 1} then { set html "<input type=button name=LOGOFF value=\"Disable Logging\" onClick=\"click_disablelog(document.Rly16)\">" } else { set html "<input type=button name=LOGON value=\"Enable Logging\" onClick=\"click_enablelog(document.Rly16)\">" } set html }] </p> </form> <p align=right> Last Updated: [clock format [clock seconds] -format "%B %d, %Y %H:%M:%S"] </p> <hr> [namespace eval Rly16 { if {$JS != ""} { append JS "\");" set html "<script>[set JS]</script>" } }]
  215   Mon May 9 16:46:30 2016 PatrickUpdate for FEE64 VHDL and Correlation browser windows
The attached VHDL file should be saved to /MIDAS/Aida and the FlashPgm.csh file edited to load "FEE_GF_Feb16_16.bin" Use the Run Control Expert command to update the firmware on all the FEE64s. Power cycle the FEE64s. This will give a 25Mhz clock from the MACB Fast NIM output 0. The attached .js and .tml files will change the Control browser window to allow access to a Correlation control window. I have already installed the Correlation directory and files on aidas. The Correlation Control window has two extra buttons. One to cause a Correlation trigger and the other to cause a reset to be sent out. The Reset is only sent out if the Run Control is in the GO state. To complete the change first make backup copies of the Aida.js and Aida.tml files that are currently in /MIDAS/TclHttpd/Html/AIDA then copy the attached new versions into /MIDAS/TclHttpd/Html/AIDA. These two files are in the attached .zip file. The Elog didn't like the .js file extension. The Browser window reload should work but it may be required to clean your browser history to ensure the new version of the file is used.
Attachment 1: FEE_GF_Feb16_16.bin
Attachment 2: Aida_js_tml_May16.zip
  214   Thu May 5 14:44:48 2016 PatrickTrigger selection explanations

Please request more information if the attached is not clear.

Attachment 1: Explanations_for_the_Trigger_selections_in_AIDA.pdf
Explanations_for_the_Trigger_selections_in_AIDA.pdf
  213   Thu May 5 11:10:36 2016 CG,PV,TDThursday 5 May 2016
Detector configuration - see https://elog.ph.ed.ac.uk/AIDA/193

Ribbon cable to nnaida19 FEE adaptor PCB disconnected due to noise issues
associated with nnaida19 or crate slot or power/timestamp/network cabling
to nnaida19 - to be investigated May 22-

207Bi source ~3cm upstream of DSSSD #1

rate and hit rate spectra for all FEE64s - see attachments 1-4

example ADC spectra for all FEE64s - attachment 5 p+n strips, attachment 6 n+n strips

Default ASIC settings, shaping time 8us (which may, or may not, be optimum - to be 
investigated May 22- )

      p+n junction strips       n+n ohmic strips
FEE64 Pulser peak width   FEE64 Pulser peak width
      (ch FWHM)                 (ch FWHM)
1     108                 3      88
2      64                 4      84
5     112                 7      76
6       -                 8      85
9      75                 11    122
10     82                 12     98
13     84                 15    127
14     99                 16    115
17     77                 19      ?
18     69                 20    100
21     77                 23     89
22     91                 24     84
25     80                 27    138
26     14                 28     16   } not connected to DSSSD
29     17                 31     17   }
30     130                32    111

DSSSD bias voltages and leakage currents - attachments 7-8
All bias voltages +100V cf. depletion ~70V for 3058 sequence (MSL type BB18)
Additional bias may be helpful (to be investigated May 22-)
Attachment 1: 600.png
600.png
Attachment 2: 601.png
601.png
Attachment 3: 602.png
602.png
Attachment 4: 603.png
603.png
Attachment 5: 610.png
610.png
Attachment 6: 611.png
611.png
Attachment 7: 620.png
620.png
Attachment 8: 621.png
621.png
  212   Thu May 5 09:52:20 2016 TDMERGE test OK
Slow comparator 0x10 -> 0x20
Fast comparator LEC/MEC 0x10 -> 0xff

To start DAQ
1) open disk file with tapeserver
2) merge
   select data links 0-31
   setup & go
   start
   toggle merge data transfer state (xfer enabled)
   toggle merge program pause state (paused)
3) enable #1 all *only*
   DAQ GO
4) statistics
   check all FEEs producing AIDA SYNC
5) merge 
   reload (several times over period of ~10s) to check all data links active (green)
   toggle merge program pause state (merging)
   reload (several times over period of ~10s) to check non-zero merged data rate
6) tapeserver
   reload to check data transfer
7) observe spinners in merger and tapeserver server terminal windows

To stop DAQ

1) DAQ STOP
2) toggle merge program pause state (paused)
3) stop disk file with tapeserver

To restart

1) open disk file with tapeserver
2) DAQ GO
5) merge 
   reload (several times over period of ~10s) to check all data links active (green)
   toggle merge program pause state (merging)
   reload (several times over period of ~10s) to check non-zero merged data rate

etc

DAQ/merge/tapeserver test OK

Server terminal session logs and screenshots appended

Custom startup from /MIDAS@aidas/config/TclHttpd/aidas1@8115/startup.tcl
/TapeServer
/DataBaseAccessServer
Loaded MemSasAccess
/SpectrumService
/NetVarService
/SigTaskService
loading tcl/MERGERunControl.tcl for namespace ::
/DataAcquisitionControlServer
DefineMessage unknown
Run Control Server Implementation for MERGE
RunControlServer loaded
loading Html/RunControl/implementation.tcl for namespace ::
RunControl loaded
loading Html/MERGE/RunControl/implementation.tcl for namespace ::
ReadRegister failed: Name=NetVar.EXEC.ID; Code= 0x10004; Info= Register name does not exist
created SigTask registers 0 0  0 0
Created UI registers
MERGE RunControl loaded
Completed custom startup from /MIDAS@aidas/TclHttpd/Html/MERGE/RunControl/stats.defn.tcl
Shared memory area located at 0x7f35b6609000
Tape Server comms table located at 0x7f35b6609000
setup Merge
DataAcqCommand 1 Halt
Halt (1)
DataAcqCommand 8 Unmapping spectra
Unmapping spectra (1)
DataAcqCommand 3 Setup
Setup (1)
go Merge
DataAcqCommand 2 Go
Go (1)
DataAcqCommand 16 MergeStart
MergeStart (1)
DataAcqCommand 17 MergePause
MergePause (1)
DataAcqCommand 17 MergePause
MergePause (1)
stop Merge
DataAcqCommand 17 MergePause
MergePause (1)
DataAcqCommand 1 Halt
Halt (1)
setup Merge
DataAcqCommand 1 Halt
Halt (1)
DataAcqCommand 8 Unmapping spectra
Unmapping spectra (1)
DataAcqCommand 3 Setup
Setup (1)
go Merge
DataAcqCommand 2 Go
Go (1)
DataAcqCommand 16 MergeStart
MergeStart (1)
DataAcqCommand 17 MergePause
MergePause (1)
DataAcqCommand 17 MergePause
MergePause (1)





MERGE Data Link (4469): accepted connection from 10.1.1.21, port 47760
MERGE Data Link (4473): buffer size changed to 65536
MERGE Data Link (4469): buffer size changed to 65536
MERGE Data Link (4467): accepted connection from 10.1.2.19, port 35051
MERGE Data Link (4467): buffer size changed to 65536
MERGE Data Link (4461): data_transfer - data received for link 12
MERGE Data Link (4471): accepted connection from 10.1.2.23, port 39835
MERGE Data Link (4471): buffer size changed to 65536
MERGE Data Link (4475): accepted connection from 10.1.2.27, port 41369
MERGE Data Link (4475): buffer size changed to 65536
MERGE Data Link (4480): accepted connection from 10.1.2.32, port 33003
MERGE Data Link (4477): accepted connection from 10.1.1.29, port 47070
MERGE Data Link (4480): buffer size changed to 65536
MERGE Data Link (4477): buffer size changed to 65536
MERGE Data Link (4478): accepted connection from 10.1.1.30, port 51732
MERGE Data Link (4478): buffer size changed to 65536
MERGE Data Link (4460): data_transfer - data received for link 11
MERGE Data Link (4459): data_transfer - data received for link 10
MERGE Data Link (4454): data_transfer - data received for link 5
MERGE Data Link (4476): accepted connection from 10.1.2.28, port 43974
MERGE Data Link (4476): buffer size changed to 65536
MERGE Data Link (4465): data_transfer - data received for link 16
MERGE Data Link (4479): accepted connection from 10.1.2.31, port 46899
MERGE Data Link (4479): buffer size changed to 65536
MERGE Data Link (4474): accepted connection from 10.1.1.26, port 34630
MERGE Data Link (4474): buffer size changed to 65536
MERGE Data Link (4463): data_transfer - data received for link 14
MERGE Data Link (4464): data_transfer - data received for link 15
MERGE Data Link (4462): data_transfer - data received for link 13
MERGE Data Link (4466): data_transfer - data received for link 17
MERGE Data Link (4470): data_transfer - data received for link 21
MERGE Data Link (4472): data_transfer - data received for link 23
MERGE Data Link (4468): data_transfer - data received for link 19
MERGE Data Link (4473): data_transfer - data received for link 24
MERGE Data Link (4469): data_transfer - data received for link 20
MERGE Data Link (4471): data_transfer - data received for link 22
MERGE Data Link (4467): data_transfer - data received for link 18
MERGE Data Link (4480): data_transfer - data received for link 31
MERGE Data Link (4475): data_transfer - data received for link 26
MERGE Data Link (4478): data_transfer - data received for link 29
MERGE Data Link (4477): data_transfer - data received for link 28
MERGE Data Link (4479): data_transfer - data received for link 30
MERGE Data Link (4476): data_transfer - data received for link 27
MERGE Data Link (4474): data_transfer - data received for link 25
Merge: Restarting from timestamp 1 or greater
MERGE Data Link (4449): client closed connection
MERGE Data Link (4449): listening on port 11001
MERGE Data Link (4452): client closed connection
MERGE Data Link (4452): listening on port 11004
MERGE Data Link (4455): client closed connection
MERGE Data Link (4455): listening on port 11007
MERGE Data Link (4450): client closed connection
MERGE Data Link (4450): listening on port 11002
MERGE Data Link (4451): client closed connection
MERGE Data Link (4451): listening on port 11003
MERGE Data Link (4456): client closed connection
MERGE Data Link (4456): listening on port 11008
MERGE Data Link (4453): client closed connection
MERGE Data Link (4453): listening on port 11005
MERGE Data Link (4457): client closed connection
MERGE Data Link (4457): listening on port 11009
MERGE Data Link (4454): client closed connection
MERGE Data Link (4454): listening on port 11006
MERGE Data Link (4458): client closed connection
MERGE Data Link (4458): listening on port 11010
MERGE Data Link (4461): client closed connection
MERGE Data Link (4461): listening on port 11013
MERGE Data Link (4459): client closed connection
MERGE Data Link (4459): listening on port 11011
MERGE Data Link (4460): client closed connection
MERGE Data Link (4460): listening on port 11012
MERGE Data Link (4465): client closed connection
MERGE Data Link (4465): listening on port 11017
MERGE Data Link (4464): client closed connection
MERGE Data Link (4464): listening on port 11016
MERGE Data Link (4462): client closed connection
MERGE Data Link (4462): listening on port 11014
MERGE Data Link (4463): client closed connection
MERGE Data Link (4463): listening on port 11015
MERGE Data Link (4466): client closed connection
MERGE Data Link (4466): listening on port 11018
MERGE Data Link (4467): client closed connection
MERGE Data Link (4467): listening on port 11019
MERGE Data Link (4468): client closed connection
MERGE Data Link (4468): listening on port 11020
MERGE Data Link (4469): client closed connection
MERGE Data Link (4469): listening on port 11021
MERGE Data Link (4472): client closed connection
MERGE Data Link (4472): listening on port 11024
MERGE Data Link (4470): client closed connection
MERGE Data Link (4470): listening on port 11022
MERGE Data Link (4473): client closed connection
MERGE Data Link (4473): listening on port 11025
MERGE Data Link (4471): client closed connection
MERGE Data Link (4471): listening on port 11023
MERGE Data Link (4480): client closed connection
MERGE Data Link (4480): listening on port 11032
MERGE Data Link (4477): client closed connection
MERGE Data Link (4477): listening on port 11029
MERGE Data Link (4476): client closed connection
MERGE Data Link (4476): listening on port 11028
MERGE Data Link (4479): client closed connection
MERGE Data Link (4479): listening on port 11031
MERGE Data Link (4478): client closed connection
MERGE Data Link (4478): listening on port 11030
MERGE Data Link (4475): client closed connection
MERGE Data Link (4475): listening on port 11027
MERGE Data Link (4474): client closed connection
MERGE Data Link (4474): listening on port 11026
Merge state now Paused
Merge state now Stopped
Merge: debugging initialised: off.
Event Buffer virtual address: 0x2602c50
Merge: initialising for 32 links: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
29 30 31 
Link Data buffer 0 (Link0), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c5974010 - 0x7ff6c5d3400f
Link Data buffer 1 (Link1), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c55b3010 - 0x7ff6c597300f
Link Data buffer 2 (Link2), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c51f2010 - 0x7ff6c55b200f
Link Data buffer 3 (Link3), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c4e31010 - 0x7ff6c51f100f
Link Data buffer 4 (Link4), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c4a70010 - 0x7ff6c4e3000f
Link Data buffer 5 (Link5), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c46af010 - 0x7ff6c4a6f00f
Link Data buffer 6 (Link6), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c42ee010 - 0x7ff6c46ae00f
Link Data buffer 7 (Link7), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c3f2d010 - 0x7ff6c42ed00f
Link Data buffer 8 (Link8), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c3b6c010 - 0x7ff6c3f2c00f
Link Data buffer 9 (Link9), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c37ab010 - 0x7ff6c3b6b00f
Link Data buffer 10 (Link10), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c33ea010 - 0x7ff6c37aa00f
Link Data buffer 11 (Link11), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c3029010 - 0x7ff6c33e900f
Link Data buffer 12 (Link12), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c2c68010 - 0x7ff6c302800f
Link Data buffer 13 (Link13), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c28a7010 - 0x7ff6c2c6700f
Link Data buffer 14 (Link14), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c24e6010 - 0x7ff6c28a600f
Link Data buffer 15 (Link15), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c2125010 - 0x7ff6c24e500f
Link Data buffer 16 (Link16), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c1d64010 - 0x7ff6c212400f
Link Data buffer 17 (Link17), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c19a3010 - 0x7ff6c1d6300f
Link Data buffer 18 (Link18), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c15e2010 - 0x7ff6c19a200f
Link Data buffer 19 (Link19), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c1221010 - 0x7ff6c15e100f
Link Data buffer 20 (Link20), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c0e60010 - 0x7ff6c122000f
Link Data buffer 21 (Link21), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c0a9f010 - 0x7ff6c0e5f00f
Link Data buffer 22 (Link22), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c06de010 - 0x7ff6c0a9e00f
Link Data buffer 23 (Link23), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c031d010 - 0x7ff6c06dd00f
Link Data buffer 24 (Link24), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6bff5c010 - 0x7ff6c031c00f
Link Data buffer 25 (Link25), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6bfb9b010 - 0x7ff6bff5b00f
Link Data buffer 26 (Link26), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6bf7da010 - 0x7ff6bfb9a00f
Link Data buffer 27 (Link27), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6bf419010 - 0x7ff6bf7d900f
Link Data buffer 28 (Link28), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6bf058010 - 0x7ff6bf41800f
Link Data buffer 29 (Link29), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6bec97010 - 0x7ff6bf05700f
Link Data buffer 30 (Link30), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6be8d6010 - 0x7ff6bec9600f
Link Data buffer 31 (Link31), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6be515010 - 0x7ff6be8d500f
Queue 0 (Link0) starts at 0x7ff6c5974010
Queue 1 (Link1) starts at 0x7ff6c55b3010
Queue 2 (Link2) starts at 0x7ff6c51f2010
Queue 3 (Link3) starts at 0x7ff6c4e31010
Queue 4 (Link4) starts at 0x7ff6c4a70010
Queue 5 (Link5) starts at 0x7ff6c46af010
Queue 6 (Link6) starts at 0x7ff6c42ee010
Queue 7 (Link7) starts at 0x7ff6c3f2d010
Queue 8 (Link8) starts at 0x7ff6c3b6c010
Queue 9 (Link9) starts at 0x7ff6c37ab010
Queue 10 (Link10) starts at 0x7ff6c33ea010
Queue 11 (Link11) starts at 0x7ff6c3029010
Queue 12 (Link12) starts at 0x7ff6c2c68010
Queue 13 (Link13) starts at 0x7ff6c28a7010
Queue 14 (Link14) starts at 0x7ff6c24e6010
Queue 15 (Link15) starts at 0x7ff6c2125010
Queue 16 (Link16) starts at 0x7ff6c1d64010
Queue 17 (Link17) starts at 0x7ff6c19a3010
Queue 18 (Link18) starts at 0x7ff6c15e2010
Queue 19 (Link19) starts at 0x7ff6c1221010
Queue 20 (Link20) starts at 0x7ff6c0e60010
Queue 21 (Link21) starts at 0x7ff6c0a9f010
Queue 22 (Link22) starts at 0x7ff6c06de010
Queue 23 (Link23) starts at 0x7ff6c031d010
Queue 24 (Link24) starts at 0x7ff6bff5c010
Queue 25 (Link25) starts at 0x7ff6bfb9b010
Queue 26 (Link26) starts at 0x7ff6bf7da010
Queue 27 (Link27) starts at 0x7ff6bf419010
Queue 28 (Link28) starts at 0x7ff6bf058010
Queue 29 (Link29) starts at 0x7ff6bec97010
Queue 30 (Link30) starts at 0x7ff6be8d6010
Queue 31 (Link31) starts at 0x7ff6be515010
MERGE Merge setup complete
Merge state now Going
Merge: Searching for timestamp 0 or greater
TCP transfer library version 3.12
TCP socket send buffer was 16384 - now 249856
TCP socket receive buffer was 87380 - now 249856
TCP socket created OK - now connecting to localhost port 10305
Connected to localhost port 10305
Merge state now Paused
MERGE Data Link (4450): accepted connection from 10.1.1.2, port 33272
MERGE Data Link (4450): buffer size changed to 65536
MERGE Data Link (4449): accepted connection from 10.1.1.1, port 44572
MERGE Data Link (4449): buffer size changed to 65536
MERGE Data Link (4451): accepted connection from 10.1.2.3, port 41720
MERGE Data Link (4451): buffer size changed to 65536
MERGE Data Link (4457): accepted connection from 10.1.1.9, port 58755
MERGE Data Link (4457): buffer size changed to 65536
MERGE Data Link (4452): accepted connection from 10.1.2.4, port 44539
MERGE Data Link (4452): buffer size changed to 65536
MERGE Data Link (4456): accepted connection from 10.1.2.8, port 58367
MERGE Data Link (4456): buffer size changed to 65536
MERGE Data Link (4455): accepted connection from 10.1.2.7, port 35016
MERGE Data Link (4458): accepted connection from 10.1.1.10, port 37593
MERGE Data Link (4455): buffer size changed to 65536
MERGE Data Link (4458): buffer size changed to 65536
MERGE Data Link (4460): accepted connection from 10.1.2.12, port 43714
MERGE Data Link (4460): buffer size changed to 65536
MERGE Data Link (4454): accepted connection from 10.1.1.6, port 39318
MERGE Data Link (4454): buffer size changed to 65536
MERGE Data Link (4463): accepted connection from 10.1.2.15, port 46057
MERGE Data Link (4463): buffer size changed to 65536
MERGE Data Link (4461): accepted connection from 10.1.1.13, port 59797
MERGE Data Link (4461): buffer size changed to 65536
MERGE Data Link (4466): accepted connection from 10.1.1.18, port 45269
MERGE Data Link (4466): buffer size changed to 65536
MERGE Data Link (4468): accepted connection from 10.1.2.20, port 39429
MERGE Data Link (4468): buffer size changed to 65536
MERGE Data Link (4459): accepted connection from 10.1.2.11, port 40296
MERGE Data Link (4459): buffer size changed to 65536
MERGE Data Link (4453): accepted connection from 10.1.1.5, port 39444
MERGE Data Link (4453): buffer size changed to 65536
MERGE Data Link (4462): accepted connection from 10.1.1.14, port 51022
MERGE Data Link (4462): buffer size changed to 65536
MERGE Data Link (4472): accepted connection from 10.1.2.24, port 51137
MERGE Data Link (4472): buffer size changed to 65536
MERGE Data Link (4470): accepted connection from 10.1.1.22, port 51868
MERGE Data Link (4470): buffer size changed to 65536
MERGE Data Link (4464): accepted connection from 10.1.2.16, port 42981
MERGE Data Link (4465): accepted connection from 10.1.1.17, port 49966
MERGE Data Link (4464): buffer size changed to 65536
MERGE Data Link (4465): buffer size changed to 65536
MERGE Data Link (4473): accepted connection from 10.1.1.25, port 33551
MERGE Data Link (4473): buffer size changed to 65536
MERGE Data Link (4467): accepted connection from 10.1.2.19, port 49975
MERGE Data Link (4467): buffer size changed to 65536
MERGE Data Link (4471): accepted connection from 10.1.2.23, port 36808
MERGE Data Link (4471): buffer size changed to 65536
MERGE Data Link (4469): accepted connection from 10.1.1.21, port 51687
MERGE Data Link (4469): buffer size changed to 65536
MERGE Data Link (4477): accepted connection from 10.1.1.29, port 53480
MERGE Data Link (4478): accepted connection from 10.1.1.30, port 32906
MERGE Data Link (4478): buffer size changed to 65536
MERGE Data Link (4477): buffer size changed to 65536
MERGE Data Link (4480): accepted connection from 10.1.2.32, port 42651
MERGE Data Link (4480): buffer size changed to 65536
MERGE Data Link (4476): accepted connection from 10.1.2.28, port 58374
MERGE Data Link (4476): buffer size changed to 65536
MERGE Data Link (4474): accepted connection from 10.1.1.26, port 52835
MERGE Data Link (4474): buffer size changed to 65536
MERGE Data Link (4479): accepted connection from 10.1.2.31, port 42097
MERGE Data Link (4479): buffer size changed to 65536
MERGE Data Link (4475): accepted connection from 10.1.2.27, port 36452
MERGE Data Link (4475): buffer size changed to 65536
Merge: Restarting from timestamp 1 or greater
Merge: Starting at timestamp 221552400a0
MERGE Data Link (4450): client closed connection
MERGE Data Link (4450): listening on port 11002
MERGE Data Link (4449): client closed connection
MERGE Data Link (4449): listening on port 11001
MERGE Data Link (4451): client closed connection
MERGE Data Link (4451): listening on port 11003
MERGE Data Link (4452): client closed connection
MERGE Data Link (4452): listening on port 11004
MERGE Data Link (4457): client closed connection
MERGE Data Link (4457): listening on port 11009
MERGE Data Link (4454): client closed connection
MERGE Data Link (4454): listening on port 11006
MERGE Data Link (4456): client closed connection
MERGE Data Link (4456): listening on port 11008
MERGE Data Link (4455): client closed connection
MERGE Data Link (4455): listening on port 11007
MERGE Data Link (4458): client closed connection
MERGE Data Link (4458): listening on port 11010
MERGE Data Link (4460): client closed connection
MERGE Data Link (4460): listening on port 11012
MERGE Data Link (4463): client closed connection
MERGE Data Link (4463): listening on port 11015
MERGE Data Link (4453): client closed connection
MERGE Data Link (4453): listening on port 11005
MERGE Data Link (4459): client closed connection
MERGE Data Link (4459): listening on port 11011
MERGE Data Link (4461): client closed connection
MERGE Data Link (4461): listening on port 11013
MERGE Data Link (4462): client closed connection
MERGE Data Link (4462): listening on port 11014
MERGE Data Link (4464): client closed connection
MERGE Data Link (4464): listening on port 11016
MERGE Data Link (4466): client closed connection
MERGE Data Link (4466): listening on port 11018
MERGE Data Link (4468): client closed connection
MERGE Data Link (4468): listening on port 11020
MERGE Data Link (4467): client closed connection
MERGE Data Link (4467): listening on port 11019
MERGE Data Link (4465): client closed connection
MERGE Data Link (4465): listening on port 11017
MERGE Data Link (4470): client closed connection
MERGE Data Link (4470): listening on port 11022
MERGE Data Link (4471): client closed connection
MERGE Data Link (4471): listening on port 11023
MERGE Data Link (4469): client closed connection
MERGE Data Link (4469): listening on port 11021
MERGE Data Link (4473): client closed connection
MERGE Data Link (4473): listening on port 11025
MERGE Data Link (4472): client closed connection
MERGE Data Link (4472): listening on port 11024
MERGE Data Link (4474): client closed connection
MERGE Data Link (4474): listening on port 11026
MERGE Data Link (4478): client closed connection
MERGE Data Link (4478): listening on port 11030
MERGE Data Link (4477): client closed connection
MERGE Data Link (4477): listening on port 11029
MERGE Data Link (4476): client closed connection
MERGE Data Link (4476): listening on port 11028
MERGE Data Link (4475): client closed connection
MERGE Data Link (4475): listening on port 11027
MERGE Data Link (4480): client closed connection
MERGE Data Link (4480): listening on port 11032
MERGE Data Link (4479): client closed connection
MERGE Data Link (4479): listening on port 11031
Merge state now Paused





Tidy up
master(3162): Operation not permitted
master: no process killed
stats: no process killed
driver: no process killed
linkTCP: no process killed
Starting Tape Server
MIDAS Tape Server: Message logger not contacted.
MIDAS Tape Server: MIDAS Tape Server Build February 14 2014
MIDAS Tape Server: Unable to change scheduling priority - Permission denied
MIDAS Tape Server: Using default startup
MIDAS Tape Server: Configuration: UDP port = 10205, SHM key=10205.
MIDAS Tape Server: File mapped object /SHM_10205 of size 1331104 created
MIDAS Tape Server: Shared memory ID is 3
MIDAS Tape Server: Shared memory segment located at address 7fbd51737000.
MIDAS Tape Server: Configuration file used - /MIDAS/TapeServer/Linux64/TS_configuration
MIDAS Tape Server: Stats task ./stats
MIDAS Tape Server: Using device file /dev/file/0 ./driver
MIDAS Tape Server: Using device sink /dev/null/0 ./driver
MIDAS Tape Server: Data link ./linkTCP      
MIDAS Tape Server: Message reporting level = 0x180fff8
MIDAS Tape Server: Message logging level = 0xfff8
MIDAS Tape Server: Tape Server Options = 0x6
MIDAS Tape Server: File device path base = /TapeData
MIDAS Tape Server: Data buffer size = 65536
MIDAS Tape Server: Tape block size = 65536
MIDAS Tape Server: File mapped object /SHM_110205 of size 4195880 created
MIDAS Tape Server: Shared memory ID is 3
MIDAS Tape Server: Shared memory segment located at address 7fbd51336000.
MIDAS Tape Server: File mapped object /SHM_210205 of size 3100 created
MIDAS Tape Server: Shared memory ID is 3
MIDAS Tape Server: Shared memory segment located at address 7fbd51898000.
MIDAS Tape Server: Capabilities restored.
MIDAS Tape Server: Master global area initialised.
MIDAS Tape Server: Stats task has pid 4522
MIDAS Tape Server: Driver process for /dev/file/0 has pid 4523
MIDAS Tape Server: Driver process for /dev/null/0 has pid 4524
MIDAS Tape Server: Link task 0 has pid 4525
MIDAS Tape Server: Starting the RPC interface
MIDAS Tape Statistics: Message logger not contacted.
MIDAS Tape Statistics: MIDAS Tape Statistics Build February 14 2014
MIDAS Tape Statistics: Started with args 10205
MIDAS Tape Statistics: Configuration: SHM key=10205
MIDAS Tape Statistics: File mapped object /SHM_10205 of size 1331104 created
MIDAS Tape Statistics: Shared memory ID is 3
MIDAS Tape Statistics: Shared memory segment located at address 7f0f7088e000.
MIDAS Data Link (4525): Message logger not contacted.
MIDAS Data Link (4525): MIDAS Tape Data Link Build February 14 2014
MIDAS Data Link (4525): Started with args 10205      
MIDAS Data Link (4525): Configuration: SHM key=10205, TCP port = 10305
MIDAS Data Link (4525): File mapped object /SHM_10205 of size 1331104 created
MIDAS Data Link (4525): Shared memory ID is 3
MIDAS Data Link (4525): Shared memory segment located at address 7fecd723a000.
MIDAS Data Link (4525): Starting the network interface
MIDAS Data Link (4525): TCP socket receive buffer was 87380 - now 249856
MIDAS Data Link (4525): TCP socket send buffer was 16384 - now 249856
MIDAS Data Link (4525): MIDAS Data Link thread 0 using TCP port 10305.
MIDAS Data Link (4525): Entering server loop
MIDAS Data Link (4525): thread 0 listening on port 10305
MIDAS Tape Server: Created RPC Program 28000205 Version 4 on UDP port 10205.
MIDAS Tape Server: Entering server loop
MIDAS Tape Server: MIDAS Tape Server now available on UDP port 10205.
MIDAS Tape Driver (4523): Message logger not contacted.
MIDAS Tape Driver (4523): MIDAS Tape Driver Build February 14 2014
MIDAS Tape Driver (4523): Started with args 0 10205
MIDAS Tape Driver (4523): Configuration: driver=0, key=10205.
MIDAS Tape Driver (4523): File mapped object /SHM_10205 of size 1331104 created
MIDAS Tape Driver (4523): Shared memory ID is 3
MIDAS Tape Driver (4523): Shared memory segment located at address 7f6c9a83f000.
MIDAS Tape Driver (4523): Using device /dev/file/0 of type file.
MIDAS Tape Driver (4524): Message logger not contacted.
MIDAS Tape Driver (4524): MIDAS Tape Driver Build February 14 2014
MIDAS Tape Driver (4524): Started with args 1 10205
MIDAS Tape Driver (4524): Configuration: driver=1, key=10205.
MIDAS Tape Driver (4524): File mapped object /SHM_10205 of size 1331104 created
MIDAS Tape Driver (4524): Shared memory ID is 3
MIDAS Tape Driver (4524): Shared memory segment located at address 7fcfa0949000.
MIDAS Tape Driver (4524): Using device /dev/null/0 of type sink.
MIDAS Tape Server: Capability 000692d95729f724 issued.
TapeServer: f_int: No such file or directory
Error 2 in f_int - No such file or directory
MIDAS Tape Driver (4523): Error 2 in f_int - No such file or directory
MIDAS Tape Server: Capability 000430285729f765 issued.
TapeServer: f_int: No such file or directory
Error 2 in f_int - No such file or directory
MIDAS Tape Driver (4523): Error 2 in f_int - No such file or directory
MIDAS Tape Server: Capability 00077f1a5729fc25 issued.
MIDAS Tape Server: device /dev/file/0 allocated.
MIDAS Tape Server: Mounting volume NULL on device /dev/file/0.
TapeServer: f_int: Permission denied
Error 13 in f_int - Permission denied
MIDAS Tape Driver (4523): Error 13 in f_int - Permission denied
MIDAS Tape Server: Capability 77f1a5729fc25 released.
MIDAS Tape Server: Capability 000ad90b5729fc58 issued.
MIDAS Tape Server: Mounting volume NULL on device /dev/file/0.
MIDAS Tape Server: Opening file R1 on device /dev/file/0.
MIDAS Tape Server: Closing file on device /dev/file/0.
MIDAS Tape Server: Dismounted volume on device /dev/file/0.
MIDAS Tape Server: Mounting volume NULL on device /dev/file/0.
MIDAS Tape Server: Opening file R2 on device /dev/file/0.
MIDAS Data Link (4525): thread 0 accepted connection from 127.0.0.1, port 34620
MIDAS Data Link (4525): buffer size changed to 65536
MIDAS Tape Server: Closing file on device /dev/file/0.
MIDAS Tape Server: Dismounted volume on device /dev/file/0.
Attachment 1: 502.png
502.png
Attachment 2: 501.png
501.png
Attachment 3: 500.png
500.png
Attachment 4: 504.png
504.png
Attachment 5: 505.png
505.png
Attachment 6: 504.png
504.png
Attachment 7: 510.png
510.png
  211   Thu May 5 08:47:49 2016 TD[How To] Mask Fast Discriminators
From the 'AIDA Control' tab select 'Discriminator control'

From the 'Discriminator controls' tab 

     select 'Reload'
     select FEE64 required
     select (or deselect) 'Act on ALL FEE64 modules?' as required
     select ASIC channel(s) to mask

The current default value (set by AIDA Settings) is 0x0 (no fast discriminator masks defined)

ASIC channels commonly masked include #2 (AS0 01) and #55 (AS3 06)
Attachment 1: 305.png
305.png
  210   Thu May 5 08:30:00 2016 TD[How To] Set MACB Trigger Output Mode
From the 'AIDA Control' tab select 'Local Controls'

From the 'LOCAL controls' tab 

     select 'Reload'
     select FEE64 required
     select (or deselect) 'Act on ALL FEE64 modules?' as required
     enter 'Trigger O/P control register' value required

The current default value (set by AIDA Options) is 0xe (logic 0)
Attachment 1: 304.png
304.png
  209   Thu May 5 08:12:14 2016 TDCurrent AIDA settings and options
Current AIDA settings DB Key: 2016May03-20.44.33

Current AIDA settings directory: /MIDAS/DB/EXPERIMENTS/AIDA/2016May03-20.44.33

Default ASIC settings *except*

                             Input Polarity
                          Positive     Negative
preAmp reference                       0x20 -> 0x30
diode link threshold      0xca -> 0xbf 0x11 -> 0x23

slow comparator           0x10
fast comparator HEC       0x2
fast comparator LEC/MEC   0x10

Shaping time 8us with appropriate reset/hold timings


AIDA options directory: /MIDAS/DB/EXPERIMENTS/AIDA/Options

See attachment 1
Attachment 1: 303.png
303.png
  208   Thu May 5 07:55:32 2016 TD[How To] Mount SAS and USB disks
*******************************************************************************************************
UPDATE 24 May 2016

3x WDC WD30EFRX ATA 3Tb disks added to aidas1 LVM configuration - see https://elog.ph.ed.ac.uk/AIDA/233
*******************************************************************************************************

Reminder

The additional 3x 3Tb disks (and the USB 8Tb disk currently attached to
aidas1) are not included in the aidas1 /etc/fstab file and do *not* have
fixed device names, i.e. the device name of each disk can change at each
reboot.

The Fix

To avoid this problem for the 3x 3Tb disks Vic suggests converting them
from ext4 format to lvm format and 'appending' each disk volume to /data10
(which is already lvm). This will require re-formatting disks /data20, 30
& 40. Backups (and checks) have now been performed for /data20, 30 & 40.
I will re-format these disks upon my return to RIKEN May 22.

The Workaround

Mount the disks manually as superuser.

How to work out which device is associated with which disk?

From SL6 window header select Applications -> System Tools -> Disk Utility

N.B. BE VERY CAREFUL USING THIS TOOL!

In the Disk Utility window a list of storage devices will be shown on the
left hand side - you will be interested in the 3x 2.2Tb Hard Disks attached
to the SAS Host Adaptor *and* the USB 8.0Tb Hard Disk attached to peripheral
devices.

Select the required device - drive and volumes information will appear on
the right hand side of the Disk Utility window - check the disk label and
device shown in the volumes section.

For example - if the selected device volume information is label 'data20'
and device '/dev/sdf1' you can mount the disk as superuser with the command

mount -t ext4 /dev/sdf1 /data20

To mount the USB disk (having obtained the device name as above) you can
mount the disk as superuser with, for example,  the command

mount -t ntfs-3g /dev/sda2 /ntfs
Attachment 1: 301.png
301.png
Attachment 2: 302.png
302.png
  207   Wed May 4 14:45:09 2016 TDmerge/tapeserver issues
TapeServer issue fixed - disk incorrectly mounted following reboot

DAQ/MERGE issues remain

> 
> Reboot aidas1
> Power cycle FEE64s
> 
> Startup DAQ and attempt data transfer
>  enable #1 all only
>  merge configured for 62 data links
>  enabled links 0-31
> 
> httpd/merge/tapeserver server terminal session follow
> 
> Tape server error messages - see following and attachment
> 
> Merge did not work - low rate (c. 50Hz, DAQ runing fast) SYNCs available for all acqservers?
>                      some other issue
> 
> 
> System identified is CPU x86_64; Platform is unix; OS is Linux and Version is 2.6.32-504.8.1.el6.x86_64
> Environment selected is CPU x64_64; Platform unix; OS Linux64 and Operating System Linux64
> MIDASBASE = /MIDAS@aidas and MIDAS_LIBRARY = /MIDAS@aidas/TclHttpd/Linux64
> PATH =
> /MIDAS@aidas/bin_Linux64:/MIDAS@aidas/TclHttpd/Linux64:/homes/npg/root/bin:/homes/npg/root/bin:/homes/npg/root/lib:/MIDAS/Linux/bin64:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/bin
> package limit is not available: can't find package limit
> Running with default file descriptor limit
> package setuid is not available: can't find package setuid
> Could not change to user 50 group 50: not owner
> /debug user "debug" password "s3-awgr+32c4"
> httpd started on port 8115
> 
> Custom startup from /MIDAS@aidas/config/TclHttpd/aidas1@8115/startup.tcl
> /TapeServer
> /DataBaseAccessServer
> Loaded MemSasAccess
> /SpectrumService
> /NetVarService
> /SigTaskService
> loading tcl/MERGERunControl.tcl for namespace ::
> /DataAcquisitionControlServer
> DefineMessage unknown
> Run Control Server Implementation for MERGE
> RunControlServer loaded
> loading Html/RunControl/implementation.tcl for namespace ::
> RunControl loaded
> loading Html/MERGE/RunControl/implementation.tcl for namespace ::
> ReadRegister failed: Name=NetVar.EXEC.ID; Code= 0x10004; Info= Register name does not exist
> created SigTask registers 0 0  0 0
> Created UI registers
> MERGE RunControl loaded
> Completed custom startup from /MIDAS@aidas/TclHttpd/Html/MERGE/RunControl/stats.defn.tcl
> Shared memory area located at 0x7f35b6609000
> Tape Server comms table located at 0x7f35b6609000
> setup Merge
> DataAcqCommand 1 Halt
> Halt (1)
> DataAcqCommand 8 Unmapping spectra
> Unmapping spectra (1)
> DataAcqCommand 3 Setup
> Setup (1)
> go Merge
> DataAcqCommand 2 Go
> Go (1)
> DataAcqCommand 16 MergeStart
> MergeStart (1)
> DataAcqCommand 17 MergePause
> MergePause (1)
> DataAcqCommand 17 MergePause
> MergePause (1)
> 
> 
> 
> 
> 
> MERGE Data Link (4487): MERGE Data Link using TCP port 11039.
> MERGE Data Link (4487): Entering server loop
> MERGE Data Link (4487): listening on port 11039
> MRGE Stats created and initialised
> MERGE Data Link (4498): Starting the network interface
> MERGE Data Link (4498): TCP socket receive buffer was 87380 - now 249856
> MERGE Data Link (4498): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (4498): MERGE Data Link using TCP port 11050.
> MERGE Data Link (4498): Entering server loop
> MERGE Data Link (4498): listening on port 11050
> MRGE Stats created and initialised
> MERGE Data Link (4506): Starting the network interface
> MERGE Data Link (4506): TCP socket receive buffer was 87380 - now 249856
> MERGE Data Link (4506): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (4506): MERGE Data Link using TCP port 11058.
> MERGE Data Link (4506): Entering server loop
> MERGE Data Link (4506): listening on port 11058
> MRGE Stats created and initialised
> MERGE Data Link (4482): Starting the network interface
> MERGE Data Link (4482): TCP socket receive buffer was 87380 - now 249856
> MERGE Data Link (4482): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (4482): MERGE Data Link using TCP port 11034.
> MERGE Data Link (4482): Entering server loop
> MERGE Data Link (4482): listening on port 11034
> MRGE Stats created and initialised
> MERGE Data Link (4500): Starting the network interface
> MERGE Data Link (4500): TCP socket receive buffer was 87380 - now 249856
> MERGE Data Link (4500): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (4500): MERGE Data Link using TCP port 11052.
> MERGE Data Link (4500): Entering server loop
> MERGE Data Link (4500): listening on port 11052
> MRGE Stats created and initialised
> MERGE Data Link (4497): Starting the network interface
> MERGE Data Link (4497): TCP socket receive buffer was 87380 - now 249856
> MERGE Data Link (4497): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (4497): MERGE Data Link using TCP port 11049.
> MERGE Data Link (4497): Entering server loop
> MERGE Data Link (4497): listening on port 11049
> MRGE Stats created and initialised
> MERGE Data Link (4490): Starting the network interface
> MERGE Data Link (4490): TCP socket receive buffer was 87380 - now 249856
> MERGE Data Link (4490): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (4490): MERGE Data Link using TCP port 11042.
> MERGE Data Link (4490): Entering server loop
> MERGE Data Link (4490): listening on port 11042
> MRGE Stats created and initialised
> MERGE Data Link (4492): Starting the network interface
> MERGE Data Link (4492): TCP socket receive buffer was 87380 - now 249856
> MERGE Data Link (4492): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (4492): MERGE Data Link using TCP port 11044.
> MERGE Data Link (4492): Entering server loop
> MERGE Data Link (4492): listening on port 11044
> MRGE Stats created and initialised
> MERGE Data Link (4489): Starting the network interface
> MERGE Data Link (4489): TCP socket receive buffer was 87380 - now 249856
> MERGE Data Link (4489): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (4489): MERGE Data Link using TCP port 11041.
> MERGE Data Link (4489): Entering server loop
> MERGE Data Link (4489): listening on port 11041
> MRGE Stats created and initialised
> MERGE Data Link (4494): Starting the network interface
> MERGE Data Link (4494): TCP socket receive buffer was 87380 - now 249856
> MERGE Data Link (4494): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (4494): MERGE Data Link using TCP port 11046.
> MERGE Data Link (4494): Entering server loop
> MERGE Data Link (4494): listening on port 11046
> MRGE Stats created and initialised
> MERGE Data Link (4499): Starting the network interface
> MERGE Data Link (4499): TCP socket receive buffer was 87380 - now 249856
> MERGE Data Link (4499): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (4499): MERGE Data Link using TCP port 11051.
> MERGE Data Link (4499): Entering server loop
> MERGE Data Link (4499): listening on port 11051
> MRGE Stats created and initialised
> MERGE Data Link (4503): Starting the network interface
> MERGE Data Link (4503): TCP socket receive buffer was 87380 - now 249856
> MERGE Data Link (4503): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (4503): MERGE Data Link using TCP port 11055.
> MRGE Stats created and initialised
> MERGE Data Link (4503): Entering server loop
> MERGE Data Link (4503): listening on port 11055
> MERGE Data Link (4504): Starting the network interface
> MERGE Data Link (4504): TCP socket receive buffer was 87380 - now 249856
> MERGE Data Link (4504): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (4504): MERGE Data Link using TCP port 11056.
> MERGE Data Link (4504): Entering server loop
> MERGE Data Link (4504): listening on port 11056
> MRGE Stats created and initialised
> MERGE Data Link (4496): Starting the network interface
> MERGE Data Link (4496): TCP socket receive buffer was 87380 - now 249856
> MERGE Data Link (4496): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (4496): MERGE Data Link using TCP port 11048.
> MERGE Data Link (4496): Entering server loop
> MERGE Data Link (4496): listening on port 11048
> MRGE Stats created and initialised
> MERGE Data Link (4493): Starting the network interface
> MERGE Data Link (4493): TCP socket receive buffer was 87380 - now 249856
> MERGE Data Link (4493): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (4493): MERGE Data Link using TCP port 11045.
> MERGE Data Link (4493): Entering server loop
> MERGE Data Link (4493): listening on port 11045
> MRGE Stats created and initialised
> MERGE Data Link (4507): Starting the network interface
> MERGE Data Link (4507): TCP socket receive buffer was 87380 - now 249856
> MRGE Stats created and initialised
> MERGE Data Link (4507): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (4488): Starting the network interface
> MERGE Data Link (4507): MERGE Data Link using TCP port 11059.
> MERGE Data Link (4507): Entering server loop
> MERGE Data Link (4507): listening on port 11059
> MERGE Data Link (4488): TCP socket receive buffer was 87380 - now 249856
> MERGE Data Link (4488): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (4488): MERGE Data Link using TCP port 11040.
> MERGE Data Link (4488): Entering server loop
> MERGE Data Link (4488): listening on port 11040
> MRGE Stats created and initialised
> MERGE Data Link (4508): Starting the network interface
> MERGE Data Link (4508): TCP socket receive buffer was 87380 - now 249856
> MERGE Data Link (4508): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (4508): MERGE Data Link using TCP port 11060.
> MERGE Data Link (4508): Entering server loop
> MERGE Data Link (4508): listening on port 11060
> MRGE Stats created and initialised
> MERGE Program Release V3/x86_64 (Sep  3 2014, 18:22:23) starting
> 
> Merge: Histogramming not using threads
> Merge: debugging initialised: off.
> MRGE Stats created and initialised
> MERGE Data Link (4510): Starting the network interface
> MERGE Data Link (4510): TCP socket receive buffer was 87380 - now 249856
> MRGE Stats created and initialised
> MERGE Data Link (4510): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (4505): Starting the network interface
> MERGE Data Link (4510): MERGE Data Link using TCP port 11062.
> MERGE Data Link (4510): Entering server loop
> MERGE Data Link (4510): listening on port 11062
> MERGE Data Link (4505): TCP socket receive buffer was 87380 - now 249856
> MERGE Data Link (4505): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (4505): MERGE Data Link using TCP port 11057.
> MERGE Data Link (4505): Entering server loop
> MERGE Data Link (4505): listening on port 11057
> Merge: opening buffer for Merge_EventBuffer, size 0x800
> Merge: returning merge memory at virtual 0x2602c50
> Event Buffer virtual address: 0x2602c50
> MRGE Stats created and initialised
> MERGE Data Link (4509): Starting the network interface
> MERGE Data Link (4509): TCP socket receive buffer was 87380 - now 249856
> MERGE Data Link (4509): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (4509): MERGE Data Link using TCP port 11061.
> MERGE Data Link (4509): Entering server loop
> MERGE Data Link (4509): listening on port 11061
> No links to initialise
> ************ Merge input buffers not yet set up ************
> MRGE Stats created and initialised
> MERGE Data Link (4502): Starting the network interface
> Data Acquisition using tape server localhost on port 0
> Initialising communication with tape server
> Setting Transfer Block Size 65536
> Setting Transfer Mode 3
> Setting Overlap Mode 0
> Setting nice 0
> TCP transfer library version 3.12
> MERGE Data Link (4502): TCP socket receive buffer was 87380 - now 249856
> MERGE Data Link (4502): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (4502): MERGE Data Link using TCP port 11054.
> MERGE Data Link (4502): Entering server loop
> MERGE Data Link (4502): listening on port 11054
> TCP socket send buffer was 16384 - now 249856
> TCP socket receive buffer was 87380 - now 249856
> TCP socket created OK - now connecting to localhost port 10305
> Transfer Error - : Connection refused
> connect() failed:  
> MERGE now ready to be initialised and started
> MRGE Stats created and initialised
> MERGE Data Link (4501): Starting the network interface
> MERGE Data Link (4501): TCP socket receive buffer was 87380 - now 249856
> MERGE Data Link (4501): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (4501): MERGE Data Link using TCP port 11053.
> MERGE Data Link (4501): Entering server loop
> MERGE Data Link (4501): listening on port 11053
> Merge: debugging initialised: off.
> Event Buffer virtual address: 0x2602c50
> Merge: initialising for 32 links: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
> 29 30 31 
> Merge: opening buffer for link0_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c5974010
> Link Data buffer 0 (Link0), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c5974010 - 0x7ff6c5d3400f
> Merge: opening buffer for link1_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c55b3010
> Link Data buffer 1 (Link1), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c55b3010 - 0x7ff6c597300f
> Merge: opening buffer for link2_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c51f2010
> Link Data buffer 2 (Link2), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c51f2010 - 0x7ff6c55b200f
> Merge: opening buffer for link3_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c4e31010
> Link Data buffer 3 (Link3), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c4e31010 - 0x7ff6c51f100f
> Merge: opening buffer for link4_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c4a70010
> Link Data buffer 4 (Link4), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c4a70010 - 0x7ff6c4e3000f
> Merge: opening buffer for link5_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c46af010
> Link Data buffer 5 (Link5), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c46af010 - 0x7ff6c4a6f00f
> Merge: opening buffer for link6_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c42ee010
> Link Data buffer 6 (Link6), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c42ee010 - 0x7ff6c46ae00f
> Merge: opening buffer for link7_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c3f2d010
> Link Data buffer 7 (Link7), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c3f2d010 - 0x7ff6c42ed00f
> Merge: opening buffer for link8_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c3b6c010
> Link Data buffer 8 (Link8), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c3b6c010 - 0x7ff6c3f2c00f
> Merge: opening buffer for link9_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c37ab010
> Link Data buffer 9 (Link9), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c37ab010 - 0x7ff6c3b6b00f
> Merge: opening buffer for link10_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c33ea010
> Link Data buffer 10 (Link10), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c33ea010 - 0x7ff6c37aa00f
> Merge: opening buffer for link11_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c3029010
> Link Data buffer 11 (Link11), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c3029010 - 0x7ff6c33e900f
> Merge: opening buffer for link12_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c2c68010
> Link Data buffer 12 (Link12), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c2c68010 - 0x7ff6c302800f
> Merge: opening buffer for link13_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c28a7010
> Link Data buffer 13 (Link13), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c28a7010 - 0x7ff6c2c6700f
> Merge: opening buffer for link14_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c24e6010
> Link Data buffer 14 (Link14), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c24e6010 - 0x7ff6c28a600f
> Merge: opening buffer for link15_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c2125010
> Link Data buffer 15 (Link15), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c2125010 - 0x7ff6c24e500f
> Merge: opening buffer for link16_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c1d64010
> Link Data buffer 16 (Link16), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c1d64010 - 0x7ff6c212400f
> Merge: opening buffer for link17_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c19a3010
> Link Data buffer 17 (Link17), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c19a3010 - 0x7ff6c1d6300f
> Merge: opening buffer for link18_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c15e2010
> Link Data buffer 18 (Link18), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c15e2010 - 0x7ff6c19a200f
> Merge: opening buffer for link19_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c1221010
> Link Data buffer 19 (Link19), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c1221010 - 0x7ff6c15e100f
> Merge: opening buffer for link20_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c0e60010
> Link Data buffer 20 (Link20), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c0e60010 - 0x7ff6c122000f
> Merge: opening buffer for link21_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c0a9f010
> Link Data buffer 21 (Link21), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c0a9f010 - 0x7ff6c0e5f00f
> Merge: opening buffer for link22_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c06de010
> Link Data buffer 22 (Link22), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c06de010 - 0x7ff6c0a9e00f
> Merge: opening buffer for link23_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6c031d010
> Link Data buffer 23 (Link23), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c031d010 - 0x7ff6c06dd00f
> Merge: opening buffer for link24_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6bff5c010
> Link Data buffer 24 (Link24), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6bff5c010 - 0x7ff6c031c00f
> Merge: opening buffer for link25_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6bfb9b010
> Link Data buffer 25 (Link25), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6bfb9b010 - 0x7ff6bff5b00f
> Merge: opening buffer for link26_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6bf7da010
> Link Data buffer 26 (Link26), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6bf7da010 - 0x7ff6bfb9a00f
> Merge: opening buffer for link27_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6bf419010
> Link Data buffer 27 (Link27), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6bf419010 - 0x7ff6bf7d900f
> Merge: opening buffer for link28_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6bf058010
> Link Data buffer 28 (Link28), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6bf058010 - 0x7ff6bf41800f
> Merge: opening buffer for link29_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6bec97010
> Link Data buffer 29 (Link29), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6bec97010 - 0x7ff6bf05700f
> Merge: opening buffer for link30_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6be8d6010
> Link Data buffer 30 (Link30), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6be8d6010 - 0x7ff6bec9600f
> Merge: opening buffer for link31_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7ff6be515010
> Link Data buffer 31 (Link31), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6be515010 - 0x7ff6be8d500f
> Queue 0 (Link0) starts at 0x7ff6c5974010
> Queue 1 (Link1) starts at 0x7ff6c55b3010
> Queue 2 (Link2) starts at 0x7ff6c51f2010
> Queue 3 (Link3) starts at 0x7ff6c4e31010
> Queue 4 (Link4) starts at 0x7ff6c4a70010
> Queue 5 (Link5) starts at 0x7ff6c46af010
> Queue 6 (Link6) starts at 0x7ff6c42ee010
> Queue 7 (Link7) starts at 0x7ff6c3f2d010
> Queue 8 (Link8) starts at 0x7ff6c3b6c010
> Queue 9 (Link9) starts at 0x7ff6c37ab010
> Queue 10 (Link10) starts at 0x7ff6c33ea010
> Queue 11 (Link11) starts at 0x7ff6c3029010
> Queue 12 (Link12) starts at 0x7ff6c2c68010
> Queue 13 (Link13) starts at 0x7ff6c28a7010
> Queue 14 (Link14) starts at 0x7ff6c24e6010
> Queue 15 (Link15) starts at 0x7ff6c2125010
> Queue 16 (Link16) starts at 0x7ff6c1d64010
> Queue 17 (Link17) starts at 0x7ff6c19a3010
> Queue 18 (Link18) starts at 0x7ff6c15e2010
> Queue 19 (Link19) starts at 0x7ff6c1221010
> Queue 20 (Link20) starts at 0x7ff6c0e60010
> Queue 21 (Link21) starts at 0x7ff6c0a9f010
> Queue 22 (Link22) starts at 0x7ff6c06de010
> Queue 23 (Link23) starts at 0x7ff6c031d010
> Queue 24 (Link24) starts at 0x7ff6bff5c010
> Queue 25 (Link25) starts at 0x7ff6bfb9b010
> Queue 26 (Link26) starts at 0x7ff6bf7da010
> Queue 27 (Link27) starts at 0x7ff6bf419010
> Queue 28 (Link28) starts at 0x7ff6bf058010
> Queue 29 (Link29) starts at 0x7ff6bec97010
> Queue 30 (Link30) starts at 0x7ff6be8d6010
> Queue 31 (Link31) starts at 0x7ff6be515010
> Merge: OutputTrace set to 1
> Merge: Histogramming using threads
> MERGE Merge setup complete
> Merge state now Going
> Merge: Searching for timestamp 0 or greater
> Merge state now Paused
> MERGE Data Link (4449): accepted connection from 10.1.1.1, port 50257
> MERGE Data Link (4449): buffer size changed to 65536
> MERGE Data Link (4452): accepted connection from 10.1.2.4, port 49227
> MERGE Data Link (4452): buffer size changed to 65536
> MERGE Data Link (4450): accepted connection from 10.1.1.2, port 40445
> MERGE Data Link (4450): buffer size changed to 65536
> MERGE Data Link (4455): accepted connection from 10.1.2.7, port 34403
> MERGE Data Link (4455): buffer size changed to 65536
> MERGE Data Link (4457): accepted connection from 10.1.1.9, port 60225
> MERGE Data Link (4457): buffer size changed to 65536
> MERGE Data Link (4453): accepted connection from 10.1.1.5, port 41911
> MERGE Data Link (4453): buffer size changed to 65536
> MERGE Data Link (4449): data_transfer - data received for link 0
> MERGE Data Link (4458): accepted connection from 10.1.1.10, port 44947
> MERGE Data Link (4458): buffer size changed to 65536
> MERGE Data Link (4451): accepted connection from 10.1.2.3, port 59179
> MERGE Data Link (4451): buffer size changed to 65536
> MERGE Data Link (4456): accepted connection from 10.1.2.8, port 39249
> MERGE Data Link (4456): buffer size changed to 65536
> MERGE Data Link (4454): accepted connection from 10.1.1.6, port 39943
> MERGE Data Link (4454): buffer size changed to 65536
> MERGE Data Link (4461): accepted connection from 10.1.1.13, port 60741
> MERGE Data Link (4461): buffer size changed to 65536
> MERGE Data Link (4450): data_transfer - data received for link 1
> MERGE Data Link (4460): accepted connection from 10.1.2.12, port 46265
> MERGE Data Link (4460): buffer size changed to 65536
> MERGE Data Link (4459): accepted connection from 10.1.2.11, port 37996
> MERGE Data Link (4459): buffer size changed to 65536
> MERGE Data Link (4452): data_transfer - data received for link 3
> MERGE Data Link (4463): accepted connection from 10.1.2.15, port 47971
> MERGE Data Link (4463): buffer size changed to 65536
> MERGE Data Link (4465): accepted connection from 10.1.1.17, port 51221
> MERGE Data Link (4465): buffer size changed to 65536
> MERGE Data Link (4455): data_transfer - data received for link 6
> MERGE Data Link (4457): data_transfer - data received for link 8
> MERGE Data Link (4453): data_transfer - data received for link 4
> MERGE Data Link (4464): accepted connection from 10.1.2.16, port 53141
> MERGE Data Link (4464): buffer size changed to 65536
> MERGE Data Link (4462): accepted connection from 10.1.1.14, port 37577
> MERGE Data Link (4462): buffer size changed to 65536
> MERGE Data Link (4458): data_transfer - data received for link 9
> MERGE Data Link (4451): data_transfer - data received for link 2
> MERGE Data Link (4456): data_transfer - data received for link 7
> MERGE Data Link (4468): accepted connection from 10.1.2.20, port 43867
> MERGE Data Link (4468): buffer size changed to 65536
> MERGE Data Link (4466): accepted connection from 10.1.1.18, port 49325
> MERGE Data Link (4466): buffer size changed to 65536
> MERGE Data Link (4470): accepted connection from 10.1.1.22, port 37734
> MERGE Data Link (4470): buffer size changed to 65536
> MERGE Data Link (4472): accepted connection from 10.1.2.24, port 54191
> MERGE Data Link (4472): buffer size changed to 65536
> MERGE Data Link (4473): accepted connection from 10.1.1.25, port 54981
> MERGE Data Link (4469): accepted connection from 10.1.1.21, port 47760
> MERGE Data Link (4473): buffer size changed to 65536
> MERGE Data Link (4469): buffer size changed to 65536
> MERGE Data Link (4467): accepted connection from 10.1.2.19, port 35051
> MERGE Data Link (4467): buffer size changed to 65536
> MERGE Data Link (4461): data_transfer - data received for link 12
> MERGE Data Link (4471): accepted connection from 10.1.2.23, port 39835
> MERGE Data Link (4471): buffer size changed to 65536
> MERGE Data Link (4475): accepted connection from 10.1.2.27, port 41369
> MERGE Data Link (4475): buffer size changed to 65536
> MERGE Data Link (4480): accepted connection from 10.1.2.32, port 33003
> MERGE Data Link (4477): accepted connection from 10.1.1.29, port 47070
> MERGE Data Link (4480): buffer size changed to 65536
> MERGE Data Link (4477): buffer size changed to 65536
> MERGE Data Link (4478): accepted connection from 10.1.1.30, port 51732
> MERGE Data Link (4478): buffer size changed to 65536
> MERGE Data Link (4460): data_transfer - data received for link 11
> MERGE Data Link (4459): data_transfer - data received for link 10
> MERGE Data Link (4454): data_transfer - data received for link 5
> MERGE Data Link (4476): accepted connection from 10.1.2.28, port 43974
> MERGE Data Link (4476): buffer size changed to 65536
> MERGE Data Link (4465): data_transfer - data received for link 16
> MERGE Data Link (4479): accepted connection from 10.1.2.31, port 46899
> MERGE Data Link (4479): buffer size changed to 65536
> MERGE Data Link (4474): accepted connection from 10.1.1.26, port 34630
> MERGE Data Link (4474): buffer size changed to 65536
> MERGE Data Link (4463): data_transfer - data received for link 14
> MERGE Data Link (4464): data_transfer - data received for link 15
> MERGE Data Link (4462): data_transfer - data received for link 13
> MERGE Data Link (4466): data_transfer - data received for link 17
> MERGE Data Link (4470): data_transfer - data received for link 21
> MERGE Data Link (4472): data_transfer - data received for link 23
> MERGE Data Link (4468): data_transfer - data received for link 19
> MERGE Data Link (4473): data_transfer - data received for link 24
> MERGE Data Link (4469): data_transfer - data received for link 20
> MERGE Data Link (4471): data_transfer - data received for link 22
> MERGE Data Link (4467): data_transfer - data received for link 18
> MERGE Data Link (4480): data_transfer - data received for link 31
> MERGE Data Link (4475): data_transfer - data received for link 26
> MERGE Data Link (4478): data_transfer - data received for link 29
> MERGE Data Link (4477): data_transfer - data received for link 28
> MERGE Data Link (4479): data_transfer - data received for link 30
> MERGE Data Link (4476): data_transfer - data received for link 27
> MERGE Data Link (4474): data_transfer - data received for link 25
> Merge: Restarting from timestamp 1 or greater
> MERGE Data Link (4449): client closed connection
> MERGE Data Link (4449): listening on port 11001
> MERGE Data Link (4452): client closed connection
> MERGE Data Link (4452): listening on port 11004
> MERGE Data Link (4455): client closed connection
> MERGE Data Link (4455): listening on port 11007
> MERGE Data Link (4450): client closed connection
> MERGE Data Link (4450): listening on port 11002
> MERGE Data Link (4451): client closed connection
> MERGE Data Link (4451): listening on port 11003
> MERGE Data Link (4456): client closed connection
> MERGE Data Link (4456): listening on port 11008
> MERGE Data Link (4453): client closed connection
> MERGE Data Link (4453): listening on port 11005
> MERGE Data Link (4457): client closed connection
> MERGE Data Link (4457): listening on port 11009
> MERGE Data Link (4454): client closed connection
> MERGE Data Link (4454): listening on port 11006
> MERGE Data Link (4458): client closed connection
> MERGE Data Link (4458): listening on port 11010
> MERGE Data Link (4461): client closed connection
> MERGE Data Link (4461): listening on port 11013
> MERGE Data Link (4459): client closed connection
> MERGE Data Link (4459): listening on port 11011
> MERGE Data Link (4460): client closed connection
> MERGE Data Link (4460): listening on port 11012
> MERGE Data Link (4465): client closed connection
> MERGE Data Link (4465): listening on port 11017
> MERGE Data Link (4464): client closed connection
> MERGE Data Link (4464): listening on port 11016
> MERGE Data Link (4462): client closed connection
> MERGE Data Link (4462): listening on port 11014
> MERGE Data Link (4463): client closed connection
> MERGE Data Link (4463): listening on port 11015
> MERGE Data Link (4466): client closed connection
> MERGE Data Link (4466): listening on port 11018
> MERGE Data Link (4467): client closed connection
> MERGE Data Link (4467): listening on port 11019
> MERGE Data Link (4468): client closed connection
> MERGE Data Link (4468): listening on port 11020
> MERGE Data Link (4469): client closed connection
> MERGE Data Link (4469): listening on port 11021
> MERGE Data Link (4472): client closed connection
> MERGE Data Link (4472): listening on port 11024
> MERGE Data Link (4470): client closed connection
> MERGE Data Link (4470): listening on port 11022
> MERGE Data Link (4473): client closed connection
> MERGE Data Link (4473): listening on port 11025
> MERGE Data Link (4471): client closed connection
> MERGE Data Link (4471): listening on port 11023
> MERGE Data Link (4480): client closed connection
> MERGE Data Link (4480): listening on port 11032
> MERGE Data Link (4477): client closed connection
> MERGE Data Link (4477): listening on port 11029
> MERGE Data Link (4476): client closed connection
> MERGE Data Link (4476): listening on port 11028
> MERGE Data Link (4479): client closed connection
> MERGE Data Link (4479): listening on port 11031
> MERGE Data Link (4478): client closed connection
> MERGE Data Link (4478): listening on port 11030
> MERGE Data Link (4475): client closed connection
> MERGE Data Link (4475): listening on port 11027
> MERGE Data Link (4474): client closed connection
> MERGE Data Link (4474): listening on port 11026
> 
> Tidy up
> master(3162): Operation not permitted
> master: no process killed
> stats: no process killed
> driver: no process killed
> linkTCP: no process killed
> Starting Tape Server
> MIDAS Tape Server: Message logger not contacted.
> MIDAS Tape Server: MIDAS Tape Server Build February 14 2014
> MIDAS Tape Server: Unable to change scheduling priority - Permission denied
> MIDAS Tape Server: Using default startup
> MIDAS Tape Server: Configuration: UDP port = 10205, SHM key=10205.
> MIDAS Tape Server: File mapped object /SHM_10205 of size 1331104 created
> MIDAS Tape Server: Shared memory ID is 3
> MIDAS Tape Server: Shared memory segment located at address 7fbd51737000.
> MIDAS Tape Server: Configuration file used - /MIDAS/TapeServer/Linux64/TS_configuration
> MIDAS Tape Server: Stats task ./stats
> MIDAS Tape Server: Using device file /dev/file/0 ./driver
> MIDAS Tape Server: Using device sink /dev/null/0 ./driver
> MIDAS Tape Server: Data link ./linkTCP      
> MIDAS Tape Server: Message reporting level = 0x180fff8
> MIDAS Tape Server: Message logging level = 0xfff8
> MIDAS Tape Server: Tape Server Options = 0x6
> MIDAS Tape Server: File device path base = /TapeData
> MIDAS Tape Server: Data buffer size = 65536
> MIDAS Tape Server: Tape block size = 65536
> MIDAS Tape Server: File mapped object /SHM_110205 of size 4195880 created
> MIDAS Tape Server: Shared memory ID is 3
> MIDAS Tape Server: Shared memory segment located at address 7fbd51336000.
> MIDAS Tape Server: File mapped object /SHM_210205 of size 3100 created
> MIDAS Tape Server: Shared memory ID is 3
> MIDAS Tape Server: Shared memory segment located at address 7fbd51898000.
> MIDAS Tape Server: Capabilities restored.
> MIDAS Tape Server: Master global area initialised.
> MIDAS Tape Server: Stats task has pid 4522
> MIDAS Tape Server: Driver process for /dev/file/0 has pid 4523
> MIDAS Tape Server: Driver process for /dev/null/0 has pid 4524
> MIDAS Tape Server: Link task 0 has pid 4525
> MIDAS Tape Server: Starting the RPC interface
> MIDAS Tape Statistics: Message logger not contacted.
> MIDAS Tape Statistics: MIDAS Tape Statistics Build February 14 2014
> MIDAS Tape Statistics: Started with args 10205
> MIDAS Tape Statistics: Configuration: SHM key=10205
> MIDAS Tape Statistics: File mapped object /SHM_10205 of size 1331104 created
> MIDAS Tape Statistics: Shared memory ID is 3
> MIDAS Tape Statistics: Shared memory segment located at address 7f0f7088e000.
> MIDAS Data Link (4525): Message logger not contacted.
> MIDAS Data Link (4525): MIDAS Tape Data Link Build February 14 2014
> MIDAS Data Link (4525): Started with args 10205      
> MIDAS Data Link (4525): Configuration: SHM key=10205, TCP port = 10305
> MIDAS Data Link (4525): File mapped object /SHM_10205 of size 1331104 created
> MIDAS Data Link (4525): Shared memory ID is 3
> MIDAS Data Link (4525): Shared memory segment located at address 7fecd723a000.
> MIDAS Data Link (4525): Starting the network interface
> MIDAS Data Link (4525): TCP socket receive buffer was 87380 - now 249856
> MIDAS Data Link (4525): TCP socket send buffer was 16384 - now 249856
> MIDAS Data Link (4525): MIDAS Data Link thread 0 using TCP port 10305.
> MIDAS Data Link (4525): Entering server loop
> MIDAS Data Link (4525): thread 0 listening on port 10305
> MIDAS Tape Server: Created RPC Program 28000205 Version 4 on UDP port 10205.
> MIDAS Tape Server: Entering server loop
> MIDAS Tape Server: MIDAS Tape Server now available on UDP port 10205.
> MIDAS Tape Driver (4523): Message logger not contacted.
> MIDAS Tape Driver (4523): MIDAS Tape Driver Build February 14 2014
> MIDAS Tape Driver (4523): Started with args 0 10205
> MIDAS Tape Driver (4523): Configuration: driver=0, key=10205.
> MIDAS Tape Driver (4523): File mapped object /SHM_10205 of size 1331104 created
> MIDAS Tape Driver (4523): Shared memory ID is 3
> MIDAS Tape Driver (4523): Shared memory segment located at address 7f6c9a83f000.
> MIDAS Tape Driver (4523): Using device /dev/file/0 of type file.
> MIDAS Tape Driver (4524): Message logger not contacted.
> MIDAS Tape Driver (4524): MIDAS Tape Driver Build February 14 2014
> MIDAS Tape Driver (4524): Started with args 1 10205
> MIDAS Tape Driver (4524): Configuration: driver=1, key=10205.
> MIDAS Tape Driver (4524): File mapped object /SHM_10205 of size 1331104 created
> MIDAS Tape Driver (4524): Shared memory ID is 3
> MIDAS Tape Driver (4524): Shared memory segment located at address 7fcfa0949000.
> MIDAS Tape Driver (4524): Using device /dev/null/0 of type sink.
> MIDAS Tape Server: Capability 000692d95729f724 issued.
> TapeServer: f_int: No such file or directory
> Error 2 in f_int - No such file or directory
> MIDAS Tape Driver (4523): Error 2 in f_int - No such file or directory
> MIDAS Tape Server: Capability 000430285729f765 issued.
> TapeServer: f_int: No such file or directory
> Error 2 in f_int - No such file or directory
> MIDAS Tape Driver (4523): Error 2 in f_int - No such file or directory
  206   Wed May 4 14:33:34 2016 TDmerge/tapeserver issues
Reboot aidas1
Power cycle FEE64s

Startup DAQ and attempt data transfer
 enable #1 all only
 merge configured for 62 data links
 enabled links 0-31

httpd/merge/tapeserver server terminal session follow

Tape server error messages - see following and attachment

Merge did not work - low rate (c. 50Hz, DAQ runing fast) SYNCs available for all acqservers?
                     some other issue


System identified is CPU x86_64; Platform is unix; OS is Linux and Version is 2.6.32-504.8.1.el6.x86_64
Environment selected is CPU x64_64; Platform unix; OS Linux64 and Operating System Linux64
MIDASBASE = /MIDAS@aidas and MIDAS_LIBRARY = /MIDAS@aidas/TclHttpd/Linux64
PATH =
/MIDAS@aidas/bin_Linux64:/MIDAS@aidas/TclHttpd/Linux64:/homes/npg/root/bin:/homes/npg/root/bin:/homes/npg/root/lib:/MIDAS/Linux/bin64:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/bin
package limit is not available: can't find package limit
Running with default file descriptor limit
package setuid is not available: can't find package setuid
Could not change to user 50 group 50: not owner
/debug user "debug" password "s3-awgr+32c4"
httpd started on port 8115

Custom startup from /MIDAS@aidas/config/TclHttpd/aidas1@8115/startup.tcl
/TapeServer
/DataBaseAccessServer
Loaded MemSasAccess
/SpectrumService
/NetVarService
/SigTaskService
loading tcl/MERGERunControl.tcl for namespace ::
/DataAcquisitionControlServer
DefineMessage unknown
Run Control Server Implementation for MERGE
RunControlServer loaded
loading Html/RunControl/implementation.tcl for namespace ::
RunControl loaded
loading Html/MERGE/RunControl/implementation.tcl for namespace ::
ReadRegister failed: Name=NetVar.EXEC.ID; Code= 0x10004; Info= Register name does not exist
created SigTask registers 0 0  0 0
Created UI registers
MERGE RunControl loaded
Completed custom startup from /MIDAS@aidas/TclHttpd/Html/MERGE/RunControl/stats.defn.tcl
Shared memory area located at 0x7f35b6609000
Tape Server comms table located at 0x7f35b6609000
setup Merge
DataAcqCommand 1 Halt
Halt (1)
DataAcqCommand 8 Unmapping spectra
Unmapping spectra (1)
DataAcqCommand 3 Setup
Setup (1)
go Merge
DataAcqCommand 2 Go
Go (1)
DataAcqCommand 16 MergeStart
MergeStart (1)
DataAcqCommand 17 MergePause
MergePause (1)
DataAcqCommand 17 MergePause
MergePause (1)





MERGE Data Link (4487): MERGE Data Link using TCP port 11039.
MERGE Data Link (4487): Entering server loop
MERGE Data Link (4487): listening on port 11039
MRGE Stats created and initialised
MERGE Data Link (4498): Starting the network interface
MERGE Data Link (4498): TCP socket receive buffer was 87380 - now 249856
MERGE Data Link (4498): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (4498): MERGE Data Link using TCP port 11050.
MERGE Data Link (4498): Entering server loop
MERGE Data Link (4498): listening on port 11050
MRGE Stats created and initialised
MERGE Data Link (4506): Starting the network interface
MERGE Data Link (4506): TCP socket receive buffer was 87380 - now 249856
MERGE Data Link (4506): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (4506): MERGE Data Link using TCP port 11058.
MERGE Data Link (4506): Entering server loop
MERGE Data Link (4506): listening on port 11058
MRGE Stats created and initialised
MERGE Data Link (4482): Starting the network interface
MERGE Data Link (4482): TCP socket receive buffer was 87380 - now 249856
MERGE Data Link (4482): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (4482): MERGE Data Link using TCP port 11034.
MERGE Data Link (4482): Entering server loop
MERGE Data Link (4482): listening on port 11034
MRGE Stats created and initialised
MERGE Data Link (4500): Starting the network interface
MERGE Data Link (4500): TCP socket receive buffer was 87380 - now 249856
MERGE Data Link (4500): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (4500): MERGE Data Link using TCP port 11052.
MERGE Data Link (4500): Entering server loop
MERGE Data Link (4500): listening on port 11052
MRGE Stats created and initialised
MERGE Data Link (4497): Starting the network interface
MERGE Data Link (4497): TCP socket receive buffer was 87380 - now 249856
MERGE Data Link (4497): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (4497): MERGE Data Link using TCP port 11049.
MERGE Data Link (4497): Entering server loop
MERGE Data Link (4497): listening on port 11049
MRGE Stats created and initialised
MERGE Data Link (4490): Starting the network interface
MERGE Data Link (4490): TCP socket receive buffer was 87380 - now 249856
MERGE Data Link (4490): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (4490): MERGE Data Link using TCP port 11042.
MERGE Data Link (4490): Entering server loop
MERGE Data Link (4490): listening on port 11042
MRGE Stats created and initialised
MERGE Data Link (4492): Starting the network interface
MERGE Data Link (4492): TCP socket receive buffer was 87380 - now 249856
MERGE Data Link (4492): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (4492): MERGE Data Link using TCP port 11044.
MERGE Data Link (4492): Entering server loop
MERGE Data Link (4492): listening on port 11044
MRGE Stats created and initialised
MERGE Data Link (4489): Starting the network interface
MERGE Data Link (4489): TCP socket receive buffer was 87380 - now 249856
MERGE Data Link (4489): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (4489): MERGE Data Link using TCP port 11041.
MERGE Data Link (4489): Entering server loop
MERGE Data Link (4489): listening on port 11041
MRGE Stats created and initialised
MERGE Data Link (4494): Starting the network interface
MERGE Data Link (4494): TCP socket receive buffer was 87380 - now 249856
MERGE Data Link (4494): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (4494): MERGE Data Link using TCP port 11046.
MERGE Data Link (4494): Entering server loop
MERGE Data Link (4494): listening on port 11046
MRGE Stats created and initialised
MERGE Data Link (4499): Starting the network interface
MERGE Data Link (4499): TCP socket receive buffer was 87380 - now 249856
MERGE Data Link (4499): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (4499): MERGE Data Link using TCP port 11051.
MERGE Data Link (4499): Entering server loop
MERGE Data Link (4499): listening on port 11051
MRGE Stats created and initialised
MERGE Data Link (4503): Starting the network interface
MERGE Data Link (4503): TCP socket receive buffer was 87380 - now 249856
MERGE Data Link (4503): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (4503): MERGE Data Link using TCP port 11055.
MRGE Stats created and initialised
MERGE Data Link (4503): Entering server loop
MERGE Data Link (4503): listening on port 11055
MERGE Data Link (4504): Starting the network interface
MERGE Data Link (4504): TCP socket receive buffer was 87380 - now 249856
MERGE Data Link (4504): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (4504): MERGE Data Link using TCP port 11056.
MERGE Data Link (4504): Entering server loop
MERGE Data Link (4504): listening on port 11056
MRGE Stats created and initialised
MERGE Data Link (4496): Starting the network interface
MERGE Data Link (4496): TCP socket receive buffer was 87380 - now 249856
MERGE Data Link (4496): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (4496): MERGE Data Link using TCP port 11048.
MERGE Data Link (4496): Entering server loop
MERGE Data Link (4496): listening on port 11048
MRGE Stats created and initialised
MERGE Data Link (4493): Starting the network interface
MERGE Data Link (4493): TCP socket receive buffer was 87380 - now 249856
MERGE Data Link (4493): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (4493): MERGE Data Link using TCP port 11045.
MERGE Data Link (4493): Entering server loop
MERGE Data Link (4493): listening on port 11045
MRGE Stats created and initialised
MERGE Data Link (4507): Starting the network interface
MERGE Data Link (4507): TCP socket receive buffer was 87380 - now 249856
MRGE Stats created and initialised
MERGE Data Link (4507): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (4488): Starting the network interface
MERGE Data Link (4507): MERGE Data Link using TCP port 11059.
MERGE Data Link (4507): Entering server loop
MERGE Data Link (4507): listening on port 11059
MERGE Data Link (4488): TCP socket receive buffer was 87380 - now 249856
MERGE Data Link (4488): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (4488): MERGE Data Link using TCP port 11040.
MERGE Data Link (4488): Entering server loop
MERGE Data Link (4488): listening on port 11040
MRGE Stats created and initialised
MERGE Data Link (4508): Starting the network interface
MERGE Data Link (4508): TCP socket receive buffer was 87380 - now 249856
MERGE Data Link (4508): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (4508): MERGE Data Link using TCP port 11060.
MERGE Data Link (4508): Entering server loop
MERGE Data Link (4508): listening on port 11060
MRGE Stats created and initialised
MERGE Program Release V3/x86_64 (Sep  3 2014, 18:22:23) starting

Merge: Histogramming not using threads
Merge: debugging initialised: off.
MRGE Stats created and initialised
MERGE Data Link (4510): Starting the network interface
MERGE Data Link (4510): TCP socket receive buffer was 87380 - now 249856
MRGE Stats created and initialised
MERGE Data Link (4510): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (4505): Starting the network interface
MERGE Data Link (4510): MERGE Data Link using TCP port 11062.
MERGE Data Link (4510): Entering server loop
MERGE Data Link (4510): listening on port 11062
MERGE Data Link (4505): TCP socket receive buffer was 87380 - now 249856
MERGE Data Link (4505): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (4505): MERGE Data Link using TCP port 11057.
MERGE Data Link (4505): Entering server loop
MERGE Data Link (4505): listening on port 11057
Merge: opening buffer for Merge_EventBuffer, size 0x800
Merge: returning merge memory at virtual 0x2602c50
Event Buffer virtual address: 0x2602c50
MRGE Stats created and initialised
MERGE Data Link (4509): Starting the network interface
MERGE Data Link (4509): TCP socket receive buffer was 87380 - now 249856
MERGE Data Link (4509): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (4509): MERGE Data Link using TCP port 11061.
MERGE Data Link (4509): Entering server loop
MERGE Data Link (4509): listening on port 11061
No links to initialise
************ Merge input buffers not yet set up ************
MRGE Stats created and initialised
MERGE Data Link (4502): Starting the network interface
Data Acquisition using tape server localhost on port 0
Initialising communication with tape server
Setting Transfer Block Size 65536
Setting Transfer Mode 3
Setting Overlap Mode 0
Setting nice 0
TCP transfer library version 3.12
MERGE Data Link (4502): TCP socket receive buffer was 87380 - now 249856
MERGE Data Link (4502): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (4502): MERGE Data Link using TCP port 11054.
MERGE Data Link (4502): Entering server loop
MERGE Data Link (4502): listening on port 11054
TCP socket send buffer was 16384 - now 249856
TCP socket receive buffer was 87380 - now 249856
TCP socket created OK - now connecting to localhost port 10305
Transfer Error - : Connection refused
connect() failed:  
MERGE now ready to be initialised and started
MRGE Stats created and initialised
MERGE Data Link (4501): Starting the network interface
MERGE Data Link (4501): TCP socket receive buffer was 87380 - now 249856
MERGE Data Link (4501): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (4501): MERGE Data Link using TCP port 11053.
MERGE Data Link (4501): Entering server loop
MERGE Data Link (4501): listening on port 11053
Merge: debugging initialised: off.
Event Buffer virtual address: 0x2602c50
Merge: initialising for 32 links: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
29 30 31 
Merge: opening buffer for link0_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c5974010
Link Data buffer 0 (Link0), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c5974010 - 0x7ff6c5d3400f
Merge: opening buffer for link1_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c55b3010
Link Data buffer 1 (Link1), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c55b3010 - 0x7ff6c597300f
Merge: opening buffer for link2_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c51f2010
Link Data buffer 2 (Link2), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c51f2010 - 0x7ff6c55b200f
Merge: opening buffer for link3_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c4e31010
Link Data buffer 3 (Link3), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c4e31010 - 0x7ff6c51f100f
Merge: opening buffer for link4_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c4a70010
Link Data buffer 4 (Link4), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c4a70010 - 0x7ff6c4e3000f
Merge: opening buffer for link5_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c46af010
Link Data buffer 5 (Link5), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c46af010 - 0x7ff6c4a6f00f
Merge: opening buffer for link6_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c42ee010
Link Data buffer 6 (Link6), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c42ee010 - 0x7ff6c46ae00f
Merge: opening buffer for link7_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c3f2d010
Link Data buffer 7 (Link7), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c3f2d010 - 0x7ff6c42ed00f
Merge: opening buffer for link8_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c3b6c010
Link Data buffer 8 (Link8), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c3b6c010 - 0x7ff6c3f2c00f
Merge: opening buffer for link9_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c37ab010
Link Data buffer 9 (Link9), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c37ab010 - 0x7ff6c3b6b00f
Merge: opening buffer for link10_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c33ea010
Link Data buffer 10 (Link10), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c33ea010 - 0x7ff6c37aa00f
Merge: opening buffer for link11_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c3029010
Link Data buffer 11 (Link11), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c3029010 - 0x7ff6c33e900f
Merge: opening buffer for link12_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c2c68010
Link Data buffer 12 (Link12), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c2c68010 - 0x7ff6c302800f
Merge: opening buffer for link13_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c28a7010
Link Data buffer 13 (Link13), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c28a7010 - 0x7ff6c2c6700f
Merge: opening buffer for link14_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c24e6010
Link Data buffer 14 (Link14), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c24e6010 - 0x7ff6c28a600f
Merge: opening buffer for link15_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c2125010
Link Data buffer 15 (Link15), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c2125010 - 0x7ff6c24e500f
Merge: opening buffer for link16_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c1d64010
Link Data buffer 16 (Link16), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c1d64010 - 0x7ff6c212400f
Merge: opening buffer for link17_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c19a3010
Link Data buffer 17 (Link17), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c19a3010 - 0x7ff6c1d6300f
Merge: opening buffer for link18_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c15e2010
Link Data buffer 18 (Link18), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c15e2010 - 0x7ff6c19a200f
Merge: opening buffer for link19_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c1221010
Link Data buffer 19 (Link19), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c1221010 - 0x7ff6c15e100f
Merge: opening buffer for link20_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c0e60010
Link Data buffer 20 (Link20), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c0e60010 - 0x7ff6c122000f
Merge: opening buffer for link21_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c0a9f010
Link Data buffer 21 (Link21), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c0a9f010 - 0x7ff6c0e5f00f
Merge: opening buffer for link22_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c06de010
Link Data buffer 22 (Link22), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c06de010 - 0x7ff6c0a9e00f
Merge: opening buffer for link23_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6c031d010
Link Data buffer 23 (Link23), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6c031d010 - 0x7ff6c06dd00f
Merge: opening buffer for link24_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6bff5c010
Link Data buffer 24 (Link24), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6bff5c010 - 0x7ff6c031c00f
Merge: opening buffer for link25_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6bfb9b010
Link Data buffer 25 (Link25), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6bfb9b010 - 0x7ff6bff5b00f
Merge: opening buffer for link26_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6bf7da010
Link Data buffer 26 (Link26), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6bf7da010 - 0x7ff6bfb9a00f
Merge: opening buffer for link27_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6bf419010
Link Data buffer 27 (Link27), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6bf419010 - 0x7ff6bf7d900f
Merge: opening buffer for link28_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6bf058010
Link Data buffer 28 (Link28), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6bf058010 - 0x7ff6bf41800f
Merge: opening buffer for link29_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6bec97010
Link Data buffer 29 (Link29), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6bec97010 - 0x7ff6bf05700f
Merge: opening buffer for link30_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6be8d6010
Link Data buffer 30 (Link30), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6be8d6010 - 0x7ff6bec9600f
Merge: opening buffer for link31_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7ff6be515010
Link Data buffer 31 (Link31), length 3932160 (0x3c0000) bytes mapped at: 0x7ff6be515010 - 0x7ff6be8d500f
Queue 0 (Link0) starts at 0x7ff6c5974010
Queue 1 (Link1) starts at 0x7ff6c55b3010
Queue 2 (Link2) starts at 0x7ff6c51f2010
Queue 3 (Link3) starts at 0x7ff6c4e31010
Queue 4 (Link4) starts at 0x7ff6c4a70010
Queue 5 (Link5) starts at 0x7ff6c46af010
Queue 6 (Link6) starts at 0x7ff6c42ee010
Queue 7 (Link7) starts at 0x7ff6c3f2d010
Queue 8 (Link8) starts at 0x7ff6c3b6c010
Queue 9 (Link9) starts at 0x7ff6c37ab010
Queue 10 (Link10) starts at 0x7ff6c33ea010
Queue 11 (Link11) starts at 0x7ff6c3029010
Queue 12 (Link12) starts at 0x7ff6c2c68010
Queue 13 (Link13) starts at 0x7ff6c28a7010
Queue 14 (Link14) starts at 0x7ff6c24e6010
Queue 15 (Link15) starts at 0x7ff6c2125010
Queue 16 (Link16) starts at 0x7ff6c1d64010
Queue 17 (Link17) starts at 0x7ff6c19a3010
Queue 18 (Link18) starts at 0x7ff6c15e2010
Queue 19 (Link19) starts at 0x7ff6c1221010
Queue 20 (Link20) starts at 0x7ff6c0e60010
Queue 21 (Link21) starts at 0x7ff6c0a9f010
Queue 22 (Link22) starts at 0x7ff6c06de010
Queue 23 (Link23) starts at 0x7ff6c031d010
Queue 24 (Link24) starts at 0x7ff6bff5c010
Queue 25 (Link25) starts at 0x7ff6bfb9b010
Queue 26 (Link26) starts at 0x7ff6bf7da010
Queue 27 (Link27) starts at 0x7ff6bf419010
Queue 28 (Link28) starts at 0x7ff6bf058010
Queue 29 (Link29) starts at 0x7ff6bec97010
Queue 30 (Link30) starts at 0x7ff6be8d6010
Queue 31 (Link31) starts at 0x7ff6be515010
Merge: OutputTrace set to 1
Merge: Histogramming using threads
MERGE Merge setup complete
Merge state now Going
Merge: Searching for timestamp 0 or greater
Merge state now Paused
MERGE Data Link (4449): accepted connection from 10.1.1.1, port 50257
MERGE Data Link (4449): buffer size changed to 65536
MERGE Data Link (4452): accepted connection from 10.1.2.4, port 49227
MERGE Data Link (4452): buffer size changed to 65536
MERGE Data Link (4450): accepted connection from 10.1.1.2, port 40445
MERGE Data Link (4450): buffer size changed to 65536
MERGE Data Link (4455): accepted connection from 10.1.2.7, port 34403
MERGE Data Link (4455): buffer size changed to 65536
MERGE Data Link (4457): accepted connection from 10.1.1.9, port 60225
MERGE Data Link (4457): buffer size changed to 65536
MERGE Data Link (4453): accepted connection from 10.1.1.5, port 41911
MERGE Data Link (4453): buffer size changed to 65536
MERGE Data Link (4449): data_transfer - data received for link 0
MERGE Data Link (4458): accepted connection from 10.1.1.10, port 44947
MERGE Data Link (4458): buffer size changed to 65536
MERGE Data Link (4451): accepted connection from 10.1.2.3, port 59179
MERGE Data Link (4451): buffer size changed to 65536
MERGE Data Link (4456): accepted connection from 10.1.2.8, port 39249
MERGE Data Link (4456): buffer size changed to 65536
MERGE Data Link (4454): accepted connection from 10.1.1.6, port 39943
MERGE Data Link (4454): buffer size changed to 65536
MERGE Data Link (4461): accepted connection from 10.1.1.13, port 60741
MERGE Data Link (4461): buffer size changed to 65536
MERGE Data Link (4450): data_transfer - data received for link 1
MERGE Data Link (4460): accepted connection from 10.1.2.12, port 46265
MERGE Data Link (4460): buffer size changed to 65536
MERGE Data Link (4459): accepted connection from 10.1.2.11, port 37996
MERGE Data Link (4459): buffer size changed to 65536
MERGE Data Link (4452): data_transfer - data received for link 3
MERGE Data Link (4463): accepted connection from 10.1.2.15, port 47971
MERGE Data Link (4463): buffer size changed to 65536
MERGE Data Link (4465): accepted connection from 10.1.1.17, port 51221
MERGE Data Link (4465): buffer size changed to 65536
MERGE Data Link (4455): data_transfer - data received for link 6
MERGE Data Link (4457): data_transfer - data received for link 8
MERGE Data Link (4453): data_transfer - data received for link 4
MERGE Data Link (4464): accepted connection from 10.1.2.16, port 53141
MERGE Data Link (4464): buffer size changed to 65536
MERGE Data Link (4462): accepted connection from 10.1.1.14, port 37577
MERGE Data Link (4462): buffer size changed to 65536
MERGE Data Link (4458): data_transfer - data received for link 9
MERGE Data Link (4451): data_transfer - data received for link 2
MERGE Data Link (4456): data_transfer - data received for link 7
MERGE Data Link (4468): accepted connection from 10.1.2.20, port 43867
MERGE Data Link (4468): buffer size changed to 65536
MERGE Data Link (4466): accepted connection from 10.1.1.18, port 49325
MERGE Data Link (4466): buffer size changed to 65536
MERGE Data Link (4470): accepted connection from 10.1.1.22, port 37734
MERGE Data Link (4470): buffer size changed to 65536
MERGE Data Link (4472): accepted connection from 10.1.2.24, port 54191
MERGE Data Link (4472): buffer size changed to 65536
MERGE Data Link (4473): accepted connection from 10.1.1.25, port 54981
MERGE Data Link (4469): accepted connection from 10.1.1.21, port 47760
MERGE Data Link (4473): buffer size changed to 65536
MERGE Data Link (4469): buffer size changed to 65536
MERGE Data Link (4467): accepted connection from 10.1.2.19, port 35051
MERGE Data Link (4467): buffer size changed to 65536
MERGE Data Link (4461): data_transfer - data received for link 12
MERGE Data Link (4471): accepted connection from 10.1.2.23, port 39835
MERGE Data Link (4471): buffer size changed to 65536
MERGE Data Link (4475): accepted connection from 10.1.2.27, port 41369
MERGE Data Link (4475): buffer size changed to 65536
MERGE Data Link (4480): accepted connection from 10.1.2.32, port 33003
MERGE Data Link (4477): accepted connection from 10.1.1.29, port 47070
MERGE Data Link (4480): buffer size changed to 65536
MERGE Data Link (4477): buffer size changed to 65536
MERGE Data Link (4478): accepted connection from 10.1.1.30, port 51732
MERGE Data Link (4478): buffer size changed to 65536
MERGE Data Link (4460): data_transfer - data received for link 11
MERGE Data Link (4459): data_transfer - data received for link 10
MERGE Data Link (4454): data_transfer - data received for link 5
MERGE Data Link (4476): accepted connection from 10.1.2.28, port 43974
MERGE Data Link (4476): buffer size changed to 65536
MERGE Data Link (4465): data_transfer - data received for link 16
MERGE Data Link (4479): accepted connection from 10.1.2.31, port 46899
MERGE Data Link (4479): buffer size changed to 65536
MERGE Data Link (4474): accepted connection from 10.1.1.26, port 34630
MERGE Data Link (4474): buffer size changed to 65536
MERGE Data Link (4463): data_transfer - data received for link 14
MERGE Data Link (4464): data_transfer - data received for link 15
MERGE Data Link (4462): data_transfer - data received for link 13
MERGE Data Link (4466): data_transfer - data received for link 17
MERGE Data Link (4470): data_transfer - data received for link 21
MERGE Data Link (4472): data_transfer - data received for link 23
MERGE Data Link (4468): data_transfer - data received for link 19
MERGE Data Link (4473): data_transfer - data received for link 24
MERGE Data Link (4469): data_transfer - data received for link 20
MERGE Data Link (4471): data_transfer - data received for link 22
MERGE Data Link (4467): data_transfer - data received for link 18
MERGE Data Link (4480): data_transfer - data received for link 31
MERGE Data Link (4475): data_transfer - data received for link 26
MERGE Data Link (4478): data_transfer - data received for link 29
MERGE Data Link (4477): data_transfer - data received for link 28
MERGE Data Link (4479): data_transfer - data received for link 30
MERGE Data Link (4476): data_transfer - data received for link 27
MERGE Data Link (4474): data_transfer - data received for link 25
Merge: Restarting from timestamp 1 or greater
MERGE Data Link (4449): client closed connection
MERGE Data Link (4449): listening on port 11001
MERGE Data Link (4452): client closed connection
MERGE Data Link (4452): listening on port 11004
MERGE Data Link (4455): client closed connection
MERGE Data Link (4455): listening on port 11007
MERGE Data Link (4450): client closed connection
MERGE Data Link (4450): listening on port 11002
MERGE Data Link (4451): client closed connection
MERGE Data Link (4451): listening on port 11003
MERGE Data Link (4456): client closed connection
MERGE Data Link (4456): listening on port 11008
MERGE Data Link (4453): client closed connection
MERGE Data Link (4453): listening on port 11005
MERGE Data Link (4457): client closed connection
MERGE Data Link (4457): listening on port 11009
MERGE Data Link (4454): client closed connection
MERGE Data Link (4454): listening on port 11006
MERGE Data Link (4458): client closed connection
MERGE Data Link (4458): listening on port 11010
MERGE Data Link (4461): client closed connection
MERGE Data Link (4461): listening on port 11013
MERGE Data Link (4459): client closed connection
MERGE Data Link (4459): listening on port 11011
MERGE Data Link (4460): client closed connection
MERGE Data Link (4460): listening on port 11012
MERGE Data Link (4465): client closed connection
MERGE Data Link (4465): listening on port 11017
MERGE Data Link (4464): client closed connection
MERGE Data Link (4464): listening on port 11016
MERGE Data Link (4462): client closed connection
MERGE Data Link (4462): listening on port 11014
MERGE Data Link (4463): client closed connection
MERGE Data Link (4463): listening on port 11015
MERGE Data Link (4466): client closed connection
MERGE Data Link (4466): listening on port 11018
MERGE Data Link (4467): client closed connection
MERGE Data Link (4467): listening on port 11019
MERGE Data Link (4468): client closed connection
MERGE Data Link (4468): listening on port 11020
MERGE Data Link (4469): client closed connection
MERGE Data Link (4469): listening on port 11021
MERGE Data Link (4472): client closed connection
MERGE Data Link (4472): listening on port 11024
MERGE Data Link (4470): client closed connection
MERGE Data Link (4470): listening on port 11022
MERGE Data Link (4473): client closed connection
MERGE Data Link (4473): listening on port 11025
MERGE Data Link (4471): client closed connection
MERGE Data Link (4471): listening on port 11023
MERGE Data Link (4480): client closed connection
MERGE Data Link (4480): listening on port 11032
MERGE Data Link (4477): client closed connection
MERGE Data Link (4477): listening on port 11029
MERGE Data Link (4476): client closed connection
MERGE Data Link (4476): listening on port 11028
MERGE Data Link (4479): client closed connection
MERGE Data Link (4479): listening on port 11031
MERGE Data Link (4478): client closed connection
MERGE Data Link (4478): listening on port 11030
MERGE Data Link (4475): client closed connection
MERGE Data Link (4475): listening on port 11027
MERGE Data Link (4474): client closed connection
MERGE Data Link (4474): listening on port 11026

Tidy up
master(3162): Operation not permitted
master: no process killed
stats: no process killed
driver: no process killed
linkTCP: no process killed
Starting Tape Server
MIDAS Tape Server: Message logger not contacted.
MIDAS Tape Server: MIDAS Tape Server Build February 14 2014
MIDAS Tape Server: Unable to change scheduling priority - Permission denied
MIDAS Tape Server: Using default startup
MIDAS Tape Server: Configuration: UDP port = 10205, SHM key=10205.
MIDAS Tape Server: File mapped object /SHM_10205 of size 1331104 created
MIDAS Tape Server: Shared memory ID is 3
MIDAS Tape Server: Shared memory segment located at address 7fbd51737000.
MIDAS Tape Server: Configuration file used - /MIDAS/TapeServer/Linux64/TS_configuration
MIDAS Tape Server: Stats task ./stats
MIDAS Tape Server: Using device file /dev/file/0 ./driver
MIDAS Tape Server: Using device sink /dev/null/0 ./driver
MIDAS Tape Server: Data link ./linkTCP      
MIDAS Tape Server: Message reporting level = 0x180fff8
MIDAS Tape Server: Message logging level = 0xfff8
MIDAS Tape Server: Tape Server Options = 0x6
MIDAS Tape Server: File device path base = /TapeData
MIDAS Tape Server: Data buffer size = 65536
MIDAS Tape Server: Tape block size = 65536
MIDAS Tape Server: File mapped object /SHM_110205 of size 4195880 created
MIDAS Tape Server: Shared memory ID is 3
MIDAS Tape Server: Shared memory segment located at address 7fbd51336000.
MIDAS Tape Server: File mapped object /SHM_210205 of size 3100 created
MIDAS Tape Server: Shared memory ID is 3
MIDAS Tape Server: Shared memory segment located at address 7fbd51898000.
MIDAS Tape Server: Capabilities restored.
MIDAS Tape Server: Master global area initialised.
MIDAS Tape Server: Stats task has pid 4522
MIDAS Tape Server: Driver process for /dev/file/0 has pid 4523
MIDAS Tape Server: Driver process for /dev/null/0 has pid 4524
MIDAS Tape Server: Link task 0 has pid 4525
MIDAS Tape Server: Starting the RPC interface
MIDAS Tape Statistics: Message logger not contacted.
MIDAS Tape Statistics: MIDAS Tape Statistics Build February 14 2014
MIDAS Tape Statistics: Started with args 10205
MIDAS Tape Statistics: Configuration: SHM key=10205
MIDAS Tape Statistics: File mapped object /SHM_10205 of size 1331104 created
MIDAS Tape Statistics: Shared memory ID is 3
MIDAS Tape Statistics: Shared memory segment located at address 7f0f7088e000.
MIDAS Data Link (4525): Message logger not contacted.
MIDAS Data Link (4525): MIDAS Tape Data Link Build February 14 2014
MIDAS Data Link (4525): Started with args 10205      
MIDAS Data Link (4525): Configuration: SHM key=10205, TCP port = 10305
MIDAS Data Link (4525): File mapped object /SHM_10205 of size 1331104 created
MIDAS Data Link (4525): Shared memory ID is 3
MIDAS Data Link (4525): Shared memory segment located at address 7fecd723a000.
MIDAS Data Link (4525): Starting the network interface
MIDAS Data Link (4525): TCP socket receive buffer was 87380 - now 249856
MIDAS Data Link (4525): TCP socket send buffer was 16384 - now 249856
MIDAS Data Link (4525): MIDAS Data Link thread 0 using TCP port 10305.
MIDAS Data Link (4525): Entering server loop
MIDAS Data Link (4525): thread 0 listening on port 10305
MIDAS Tape Server: Created RPC Program 28000205 Version 4 on UDP port 10205.
MIDAS Tape Server: Entering server loop
MIDAS Tape Server: MIDAS Tape Server now available on UDP port 10205.
MIDAS Tape Driver (4523): Message logger not contacted.
MIDAS Tape Driver (4523): MIDAS Tape Driver Build February 14 2014
MIDAS Tape Driver (4523): Started with args 0 10205
MIDAS Tape Driver (4523): Configuration: driver=0, key=10205.
MIDAS Tape Driver (4523): File mapped object /SHM_10205 of size 1331104 created
MIDAS Tape Driver (4523): Shared memory ID is 3
MIDAS Tape Driver (4523): Shared memory segment located at address 7f6c9a83f000.
MIDAS Tape Driver (4523): Using device /dev/file/0 of type file.
MIDAS Tape Driver (4524): Message logger not contacted.
MIDAS Tape Driver (4524): MIDAS Tape Driver Build February 14 2014
MIDAS Tape Driver (4524): Started with args 1 10205
MIDAS Tape Driver (4524): Configuration: driver=1, key=10205.
MIDAS Tape Driver (4524): File mapped object /SHM_10205 of size 1331104 created
MIDAS Tape Driver (4524): Shared memory ID is 3
MIDAS Tape Driver (4524): Shared memory segment located at address 7fcfa0949000.
MIDAS Tape Driver (4524): Using device /dev/null/0 of type sink.
MIDAS Tape Server: Capability 000692d95729f724 issued.
TapeServer: f_int: No such file or directory
Error 2 in f_int - No such file or directory
MIDAS Tape Driver (4523): Error 2 in f_int - No such file or directory
MIDAS Tape Server: Capability 000430285729f765 issued.
TapeServer: f_int: No such file or directory
Error 2 in f_int - No such file or directory
MIDAS Tape Driver (4523): Error 2 in f_int - No such file or directory
Attachment 1: 230.png
230.png
Attachment 2: 231.png
231.png
Attachment 3: 232.png
232.png
Attachment 4: GS_configuration
#    any line starting with a # is a comment and is ignored
merge ./merge64.AD
links 62  ./link64 11001
#
options 0x0
option options 0x0
# with spinner - option msg_reporting_level 0x0180fff8 (1 is the spinner)
option msg_reporting_level 0x0100fff8
#   use 0x0080fff8 to enable msg logging
option msg_logging_level 0xfff8
#    default for following is 64Kbytes
option data_buffer_size 64
#end of information

  205   Wed May 4 07:04:12 2016 TDWAVE statistics
AIDA wave statistics

AIDA FEE adaptor cards only
BNC PB-4 pulser only to all channels (25Hz)
Attachment 1: 150.png
150.png
Attachment 2: 151.png
151.png
Attachment 3: 152.png
152.png
Attachment 4: 153.png
153.png
Attachment 5: 154.png
154.png
Attachment 6: 155.png
155.png
Attachment 7: 156.png
156.png
Attachment 8: 157.png
157.png
Attachment 9: 158.png
158.png
Attachment 10: 159.png
159.png
Attachment 11: 160.png
160.png
Attachment 12: 161.png
161.png
Attachment 13: 162.png
162.png
  204   Wed May 4 06:35:08 2016 TD[How To] Save AIDA Settings & Options
From 'Control' tab select 'Save/Restore Settings'

From 'Save/Restore Module Settings'

     select 'Reload'

     select 'Module Names' whose settings should be saved (usually all)


     select 'Generate new DB key' and make a note of the DB key generated
          the DB key will have the format YYYYMMMDD-HH.MM.SS

          The DB key will be used to name a directory to store AIDA settings
          and is created uid: npg, gid: npgstaff, perms 755. However, its
          contents are written uid: nfsnobody, gid nfsnobody. The default
          directory (DB Key) permissions do not work - change the permissions
          to 777 - before attempting to save data to this directory (DB Key).


     change the permissions of the DB key directory using the command

     chmod 777 /MIDAS/DB/EXPERIMENTS/AIDA/YYYYMMMDD-HH.MM.SS


     select 'Save Settings' to save AIDA ASIC, LED and waveform settings to
     the directory (DB key)

Example

aidas1> ls /MIDAS/DB/EXPERIMENTS/2016May03-20.44.33
CONTENTS  nnaida13  nnaida18  nnaida22  nnaida27  nnaida31  nnaida7
nnaida1   nnaida14  nnaida19  nnaida23  nnaida28  nnaida32  nnaida8
nnaida10  nnaida15  nnaida2   nnaida24  nnaida29  nnaida4   nnaida9
nnaida11  nnaida16  nnaida20  nnaida25  nnaida3   nnaida5
nnaida12  nnaida17  nnaida21  nnaida26  nnaida30  nnaida6
aidas1> ls /MIDAS/DB/EXPERIMENTS/2016May03-20.44.33/nnaida1
CONTENTS
aidas1> more /MIDAS/DB/EXPERIMENTS/2016May03-20.44.33/nnaida1/CONTENTS
ASIC.1.3 string 0x02
ASIC.2.19 string 0x5c
ASIC.2.20 string 0x68
ASIC.1.4 string 0x07
ASIC.2.21 string 0x08
ASIC.2.22 string 0x5c
ASIC.1.5 string 0x08
ASIC.1.6 string 0x09
ASIC.2.23 string 0x08
ASIC.2.24 string 0x68
ASIC.1.7 string 0x05
ASIC.2.25 string 0x08
ASIC.1.8 string 0x00
ASIC.2.26 string 0xbf
ASIC.1.9 string 0x0f
ASIC.2.0 string 0x04
ASIC.2.1 string 0x05
ASIC.3.10 string 0x00
ASIC.2.2 string 0x06
ASIC.3.11 string 0x0d
ASIC.2.3 string 0x02
ASIC.3.12 string 0x10
ASIC.2.4 string 0x07

etc


To ensure that the new settings continue to be used through system power cycles
you define the DB key directory to use in AIDA Options as follows:

From 'Experiment Control' tab select 'Save/Restore Options'


From 'Options' tab

     select 'Reload'

     select 'Act on ALL Data Acquisition Servers?'

     enter directory (DB Key) in the 'ASIC.settings' field

     select 'Save Options'

Example

aidas1> ls /MIDAS/DB/EXPERIMENTS/AIDA/Options
nnaida1   nnaida13  nnaida17  nnaida20  nnaida24  nnaida28  nnaida31  nnaida6
nnaida10  nnaida14  nnaida18  nnaida21  nnaida25  nnaida29  nnaida32  nnaida7
nnaida11  nnaida15  nnaida19  nnaida22  nnaida26  nnaida3   nnaida4   nnaida8
nnaida12  nnaida16  nnaida2   nnaida23  nnaida27  nnaida30  nnaida5   nnaida9
aidas1> ls /MIDAS/DB/EXPERIMENTS/AIDA/Options/nnaida1
CONTENTS
aidas1> cat /MIDAS/DB/EXPERIMENTS/AIDA/Options/nnaida1/CONTENTS
Index string Stat.offset&&Aida_Hist_W_Enable&&TS_SYNC_PHASE&&ExtClk&&Aida.shift
&&MACB_TRIG_MODE&&Aida.offset&&Aida_GroupBase&&Rate.channels&&Stat.channels&&Ai
da.Vchannels&&ASIC.settings&&WAVE_DMA_HWM&&Aida_Hist_D_Enable&&Stat.shift&&Aida
.Wchannels&&Aida_Hist_V_Enable&&Include.Aida&&Aida.channels&&DataAcqPgm&&Aida_H
ist_H_Enable&&DataFormat&&ASIC_DMA_HWM&&Aida_Hist_L_Enable
Stat.offset string 64
Aida_Hist_W_Enable string 1
Aida.shift string 0
TS_SYNC_PHASE string 1
ExtClk string 1
Aida.offset string 0
MACB_TRIG_MODE string 14
Rate.channels string 150
Aida_GroupBase string 1
Stat.channels string 150
Aida_Hist_D_Enable string 1
ASIC.settings string 2016May03-20.44.33
WAVE_DMA_HWM string 0x0007ffff
Aida.Vchannels string 256
Stat.shift string 6
Aida.Wchannels string 1020
Aida_Hist_V_Enable string 0
Include.Aida string 1
Aida.channels string 65536
Aida_Hist_H_Enable string 1
DataFormat string AIDA
DataAcqPgm string AidaExecV8
ASIC_DMA_HWM string 0x000fffff
Aida_Hist_L_Enable string 1
  203   Wed May 4 03:01:15 2016 TDWednesday 4 May 2016
10.30 Power up.
Normal DAQ startup.
AIDA SYNCs show rates from ~0-450Hz.
Master Timestamp Control indicates SYNC phase 1.
Change SYNC phase to 3, AIDA SYNC rates ~300-450Hz.

See attachments 1-4

16.05 BNC PB-4 pulser to all channels, frequency c. 25Hz
      Rate and HitRate spectra for all FEE64s - see attachments 5-8
      Note - discriminator masks for all FEE64s set to 0x0 

17.15 7x MSL type BB18(DS)-1000 installed
      see attachments 9-10 - CAEN N1519 screenshots

17,55 Options for nnaida5 - see attachment 11
Attachment 1: 110.png
110.png
Attachment 2: 111.png
111.png
Attachment 3: 114.png
114.png
Attachment 4: 115.png
115.png
Attachment 5: 200.png
200.png
Attachment 6: 201.png
201.png
Attachment 7: 202.png
202.png
Attachment 8: 203.png
203.png
Attachment 9: 210.png
210.png
Attachment 10: 211.png
211.png
Attachment 11: 220.png
220.png
  202   Tue May 3 16:11:57 2016 TDMIDAS updates - problems
With help from Patrick Coleman-Smith & Vic Pucknell most of the issues identified
appear to be related to one (or more) of the following issues

1) The FEEs required rebooting following MIDAS updates to use AIDAExecV8 (not AIDAExecV7) - reboot FEEs
2) New settings saved to /MIDAS/DB/EXPERIMENTS/AIDA/2016May03-20.44.33
3) AIDA options still quoted AIDAExecV7 cf AIDAExecV8 - update AIDA options, use new settings directory above
4) AIDA SYNCs appear to require SYNC Phase 2 or 3 (cf. 0 or 1) - PJCS reviewing
   See attachments 1-4 respectively SYNC phases 0, 1, 2 & 3

Outstanding issues

1) Httpd Merger/TapeServer, MERGE & TapeServer issues - VFEP reviewing
   With 64 data links configured, Httpd server crashes at startup

2) mtimeout not defined following SETUP
   See Elog 200 - is this an issue?

3) Unable to plot AIDA temperatures (low priority)





> 1) Unable to enable data transfer
> 
>    From RunControl unable to 'Enable #1 All' or 'Enable #2 All'
> 
>    in the former case, no 'X' symbol appears by the sttaus of each acqserver
>    in the latter case I obtain an error
> 
>    see attachments 1-3
> 
>    Note the file referred to in the error message is
> 
> -rwxr-xr-x. 1 npg npgstaff 16503 Mar  9 22:46 DataAcquisitionControl.tml
> 
> 2) Unable to plot temperature data
> 
>    See attachment 4 for error message
> 
> 3) MERGE shows 64 data links - only the first 32 can be toggled (enable/disable)
>    For 32x FEE64s should be able to toggle 64? Configuration file issue?
> 
> MERGE Program Release V3/x86_64 (Sep  3 2014, 18:22:23) starting
> 
> Merge: Histogramming not using threads
> Merge: debugging initialised: off.
> Merge: opening buffer for Merge_EventBuffer, size 0x800
> Merge: returning merge memory at virtual 0xcb5c50
> Event Buffer virtual address: 0xcb5c50
> Merge: initialising for 8 links: 2 3 4 5 6 7 8 9 
> Merge: opening buffer for link2_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f184cb93010
> Link Data buffer 0 (Link2), length 3932160 (0x3c0000) bytes mapped at: 0x7f184cb93010 - 0x7f184cf5300f
> Merge: opening buffer for link3_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f184c7d2010
> Link Data buffer 1 (Link3), length 3932160 (0x3c0000) bytes mapped at: 0x7f184c7d2010 - 0x7f184cb9200f
> Merge: opening buffer for link4_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f184c411010
> Link Data buffer 2 (Link4), length 3932160 (0x3c0000) bytes mapped at: 0x7f184c411010 - 0x7f184c7d100f
> Merge: opening buffer for link5_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f184c050010
> Link Data buffer 3 (Link5), length 3932160 (0x3c0000) bytes mapped at: 0x7f184c050010 - 0x7f184c41000f
> Merge: opening buffer for link6_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f184bc8f010
> Link Data buffer 4 (Link6), length 3932160 (0x3c0000) bytes mapped at: 0x7f184bc8f010 - 0x7f184c04f00f
> Merge: opening buffer for link7_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f184b8ce010
> Link Data buffer 5 (Link7), length 3932160 (0x3c0000) bytes mapped at: 0x7f184b8ce010 - 0x7f184bc8e00f
> Merge: opening buffer for link8_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f184b50d010
> Link Data buffer 6 (Link8), length 3932160 (0x3c0000) bytes mapped at: 0x7f184b50d010 - 0x7f184b8cd00f
> Merge: opening buffer for link9_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f184b14c010
> Link Data buffer 7 (Link9), length 3932160 (0x3c0000) bytes mapped at: 0x7f184b14c010 - 0x7f184b50c00f
> Queue 0 (Link2) starts at 0x7f184cb93010
> Queue 1 (Link3) starts at 0x7f184c7d2010
> Queue 2 (Link4) starts at 0x7f184c411010
> Queue 3 (Link5) starts at 0x7f184c050010
> Queue 4 (Link6) starts at 0x7f184bc8f010
> Queue 5 (Link7) starts at 0x7f184b8ce010
> Queue 6 (Link8) starts at 0x7f184b50d010
> Queue 7 (Link9) starts at 0x7f184b14c010
> Merge: OutputTrace set to 1
> Merge: Histogramming using threads
> MERGE Merge setup complete
> Data Acquisition using tape server localhost on port 0
> Initialising communication with tape server
> Setting Transfer Block Size 65536
> Setting Transfer Mode 3
> Setting Overlap Mode 0
> Setting nice 0
> TCP transfer library version 3.12
> TCP socket send buffer was 16384 - now 249856
> TCP socket receive buffer was 87380 - now 249856
> TCP socket created OK - now connecting to localhost port 10305
> Transfer Error - : Connection refused
> connect() failed:  
> MERGE now ready to be initialised and started
> MRGE Stats created and initialised
> MERGE Data Link (7866): Starting the network interface
> MERGE Data Link (7866): TCP socket receive buffer was 87380 - now 249856
> MERGE Data Link (7866): TCP socket send buffer was 16384 - now 249856
> MERGE Data Link (7866): MERGE Data Link using TCP port 11032.
> MERGE Data Link (7866): Entering server loop
> MERGE Data Link (7866): listening on port 11032
> Merge: debugging initialised: off.
> Event Buffer virtual address: 0xcb5c50
> Merge: initialising for 32 links: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
> 29 30 31 
> Merge: opening buffer for link0_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f184a367010
> Link Data buffer 0 (Link0), length 3932160 (0x3c0000) bytes mapped at: 0x7f184a367010 - 0x7f184a72700f
> Merge: opening buffer for link1_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f1849fa6010
> Link Data buffer 1 (Link1), length 3932160 (0x3c0000) bytes mapped at: 0x7f1849fa6010 - 0x7f184a36600f
> Link Data buffer 2 (Link2), length 3932160 (0x3c0000) bytes mapped at: 0x7f184cb93010 - 0x7f184cf5300f
> Link Data buffer 3 (Link3), length 3932160 (0x3c0000) bytes mapped at: 0x7f184c7d2010 - 0x7f184cb9200f
> Link Data buffer 4 (Link4), length 3932160 (0x3c0000) bytes mapped at: 0x7f184c411010 - 0x7f184c7d100f
> Link Data buffer 5 (Link5), length 3932160 (0x3c0000) bytes mapped at: 0x7f184c050010 - 0x7f184c41000f
> Link Data buffer 6 (Link6), length 3932160 (0x3c0000) bytes mapped at: 0x7f184bc8f010 - 0x7f184c04f00f
> Link Data buffer 7 (Link7), length 3932160 (0x3c0000) bytes mapped at: 0x7f184b8ce010 - 0x7f184bc8e00f
> Link Data buffer 8 (Link8), length 3932160 (0x3c0000) bytes mapped at: 0x7f184b50d010 - 0x7f184b8cd00f
> Link Data buffer 9 (Link9), length 3932160 (0x3c0000) bytes mapped at: 0x7f184b14c010 - 0x7f184b50c00f
> Merge: opening buffer for link10_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f1849be5010
> Link Data buffer 10 (Link10), length 3932160 (0x3c0000) bytes mapped at: 0x7f1849be5010 - 0x7f1849fa500f
> Merge: opening buffer for link11_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f1849824010
> Link Data buffer 11 (Link11), length 3932160 (0x3c0000) bytes mapped at: 0x7f1849824010 - 0x7f1849be400f
> Merge: opening buffer for link12_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f1849463010
> Link Data buffer 12 (Link12), length 3932160 (0x3c0000) bytes mapped at: 0x7f1849463010 - 0x7f184982300f
> Merge: opening buffer for link13_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f18490a2010
> Link Data buffer 13 (Link13), length 3932160 (0x3c0000) bytes mapped at: 0x7f18490a2010 - 0x7f184946200f
> Merge: opening buffer for link14_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f1848ce1010
> Link Data buffer 14 (Link14), length 3932160 (0x3c0000) bytes mapped at: 0x7f1848ce1010 - 0x7f18490a100f
> Merge: opening buffer for link15_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f1848920010
> Link Data buffer 15 (Link15), length 3932160 (0x3c0000) bytes mapped at: 0x7f1848920010 - 0x7f1848ce000f
> Merge: opening buffer for link16_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f184855f010
> Link Data buffer 16 (Link16), length 3932160 (0x3c0000) bytes mapped at: 0x7f184855f010 - 0x7f184891f00f
> Merge: opening buffer for link17_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f184819e010
> Link Data buffer 17 (Link17), length 3932160 (0x3c0000) bytes mapped at: 0x7f184819e010 - 0x7f184855e00f
> Merge: opening buffer for link18_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f1847ddd010
> Link Data buffer 18 (Link18), length 3932160 (0x3c0000) bytes mapped at: 0x7f1847ddd010 - 0x7f184819d00f
> Merge: opening buffer for link19_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f1847a1c010
> Link Data buffer 19 (Link19), length 3932160 (0x3c0000) bytes mapped at: 0x7f1847a1c010 - 0x7f1847ddc00f
> Merge: opening buffer for link20_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f184765b010
> Link Data buffer 20 (Link20), length 3932160 (0x3c0000) bytes mapped at: 0x7f184765b010 - 0x7f1847a1b00f
> Merge: opening buffer for link21_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f184729a010
> Link Data buffer 21 (Link21), length 3932160 (0x3c0000) bytes mapped at: 0x7f184729a010 - 0x7f184765a00f
> Merge: opening buffer for link22_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f1846ed9010
> Link Data buffer 22 (Link22), length 3932160 (0x3c0000) bytes mapped at: 0x7f1846ed9010 - 0x7f184729900f
> Merge: opening buffer for link23_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f1846b18010
> Link Data buffer 23 (Link23), length 3932160 (0x3c0000) bytes mapped at: 0x7f1846b18010 - 0x7f1846ed800f
> Merge: opening buffer for link24_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f1846757010
> Link Data buffer 24 (Link24), length 3932160 (0x3c0000) bytes mapped at: 0x7f1846757010 - 0x7f1846b1700f
> Merge: opening buffer for link25_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f1846396010
> Link Data buffer 25 (Link25), length 3932160 (0x3c0000) bytes mapped at: 0x7f1846396010 - 0x7f184675600f
> Merge: opening buffer for link26_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f1845fd5010
> Link Data buffer 26 (Link26), length 3932160 (0x3c0000) bytes mapped at: 0x7f1845fd5010 - 0x7f184639500f
> Merge: opening buffer for link27_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f1845c14010
> Link Data buffer 27 (Link27), length 3932160 (0x3c0000) bytes mapped at: 0x7f1845c14010 - 0x7f1845fd400f
> Merge: opening buffer for link28_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f1845853010
> Link Data buffer 28 (Link28), length 3932160 (0x3c0000) bytes mapped at: 0x7f1845853010 - 0x7f1845c1300f
> Merge: opening buffer for link29_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f1845492010
> Link Data buffer 29 (Link29), length 3932160 (0x3c0000) bytes mapped at: 0x7f1845492010 - 0x7f184585200f
> Merge: opening buffer for link30_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f18450d1010
> Link Data buffer 30 (Link30), length 3932160 (0x3c0000) bytes mapped at: 0x7f18450d1010 - 0x7f184549100f
> Merge: opening buffer for link31_Data, size 0x3c0000
> Merge: returning merge memory at virtual 0x7f1844d10010
> Link Data buffer 31 (Link31), length 3932160 (0x3c0000) bytes mapped at: 0x7f1844d10010 - 0x7f18450d000f
> Queue 0 (Link0) starts at 0x7f184a367010
> Queue 1 (Link1) starts at 0x7f1849fa6010
> Queue 2 (Link2) starts at 0x7f184cb93010
> Queue 3 (Link3) starts at 0x7f184c7d2010
> Queue 4 (Link4) starts at 0x7f184c411010
> Queue 5 (Link5) starts at 0x7f184c050010
> Queue 6 (Link6) starts at 0x7f184bc8f010
> Queue 7 (Link7) starts at 0x7f184b8ce010
> Queue 8 (Link8) starts at 0x7f184b50d010
> Queue 9 (Link9) starts at 0x7f184b14c010
> Queue 10 (Link10) starts at 0x7f1849be5010
> Queue 11 (Link11) starts at 0x7f1849824010
> Queue 12 (Link12) starts at 0x7f1849463010
> Queue 13 (Link13) starts at 0x7f18490a2010
> Queue 14 (Link14) starts at 0x7f1848ce1010
> Queue 15 (Link15) starts at 0x7f1848920010
> Queue 16 (Link16) starts at 0x7f184855f010
> Queue 17 (Link17) starts at 0x7f184819e010
> Queue 18 (Link18) starts at 0x7f1847ddd010
> Queue 19 (Link19) starts at 0x7f1847a1c010
> Queue 20 (Link20) starts at 0x7f184765b010
> Queue 21 (Link21) starts at 0x7f184729a010
> Queue 22 (Link22) starts at 0x7f1846ed9010
> Queue 23 (Link23) starts at 0x7f1846b18010
> Queue 24 (Link24) starts at 0x7f1846757010
> Queue 25 (Link25) starts at 0x7f1846396010
> Queue 26 (Link26) starts at 0x7f1845fd5010
> Queue 27 (Link27) starts at 0x7f1845c14010
> Queue 28 (Link28) starts at 0x7f1845853010
> Queue 29 (Link29) starts at 0x7f1845492010
> Queue 30 (Link30) starts at 0x7f18450d1010
> Queue 31 (Link31) starts at 0x7f1844d10010
> MERGE Merge setup complete
> Initialising communication with tape server localhost on port 0
> Setting Transfer Block Size 65536
> Setting Transfer Mode 3
> Setting Overlap Mode 0
> Setting nice 0
> TCP transfer library version 3.12
> TCP socket send buffer was 16384 - now 249856
> TCP socket receive buffer was 87380 - now 249856
> TCP socket created OK - now connecting to localhost port 10305
> Connected to localhost port 10305
> Merge state now Going
> Merge: Searching for timestamp 0 or greater
> Merge state now Paused
> Merge state now Stopped
> 
> 4) mtimeout not defined following SETUP
> 
> See attachment 5
> 
> 5) No data acquisition
>    No histogram data. No SYNCs.
> 
>    See attachments 6-8
Attachment 1: 100.png
100.png
Attachment 2: 101.png
101.png
Attachment 3: 102.png
102.png
Attachment 4: 103.png
103.png
  201   Tue May 3 15:45:17 2016 TDAIDA Temperatures Log
AIDA temperatures (ASIC, Virtex, PSU) are recorded in the file:

/MIDAS/log/temperatures.txt
Attachment 1: Temperatures.txt
Tue May 03 16:25:06 JST 2016 nnaida1 61.38 32.19 60.38
Tue May 03 16:25:06 JST 2016 nnaida2 59.25 32.31 61.69
Tue May 03 16:25:07 JST 2016 nnaida3 64.75 33.44 49.94
Tue May 03 16:25:07 JST 2016 nnaida4 69.25 39.19 54.44
Tue May 03 16:25:07 JST 2016 nnaida5 64.12 32.88 55.25
Tue May 03 16:25:07 JST 2016 nnaida6 66.94 37.94 53.12
Tue May 03 16:25:08 JST 2016 nnaida7 62.44 31.56 0.00
Tue May 03 16:25:08 JST 2016 nnaida8 61.12 31.38 49.38
Tue May 03 16:25:08 JST 2016 nnaida9 65.44 32.00 55.19
Tue May 03 16:25:08 JST 2016 nnaida10 65.62 34.94 65.69
Tue May 03 16:25:09 JST 2016 nnaida11 64.69 33.88 52.19
Tue May 03 16:25:09 JST 2016 nnaida12 72.25 44.94 52.31
Tue May 03 16:25:09 JST 2016 nnaida13 62.12 31.50 50.75
Tue May 03 16:25:10 JST 2016 nnaida14 60.56 32.06 51.62
Tue May 03 16:25:10 JST 2016 nnaida15 60.69 31.25 0.00
Tue May 03 16:25:10 JST 2016 nnaida16 57.25 31.06 50.31
Tue May 03 16:25:10 JST 2016 nnaida17 56.31 30.69 54.94
Tue May 03 16:25:11 JST 2016 nnaida18 61.00 32.56 52.00
Tue May 03 16:25:11 JST 2016 nnaida19 64.62 34.31 57.44
Tue May 03 16:25:11 JST 2016 nnaida20 72.25 42.44 55.56
Tue May 03 16:25:12 JST 2016 nnaida21 64.44 30.94 47.94
Tue May 03 16:25:12 JST 2016 nnaida22 60.12 31.88 46.00
Tue May 03 16:25:12 JST 2016 nnaida23 62.19 32.56 0.00
Tue May 03 16:25:12 JST 2016 nnaida24 65.62 34.25 53.25
Tue May 03 16:25:13 JST 2016 nnaida25 57.69 30.00 58.44
Tue May 03 16:25:13 JST 2016 nnaida26 60.81 30.12 56.31
Tue May 03 16:25:13 JST 2016 nnaida27 61.12 32.12 50.88
Tue May 03 16:25:13 JST 2016 nnaida28 65.94 32.69 0.00
Tue May 03 16:25:14 JST 2016 nnaida29 59.50 29.31 53.19
Tue May 03 16:25:14 JST 2016 nnaida30 60.50 34.75 55.06
Tue May 03 16:25:14 JST 2016 nnaida31 59.12 30.25 47.06
Tue May 03 16:25:15 JST 2016 nnaida32 61.50 31.31 51.88
Tue May 03 16:26:15 JST 2016 nnaida1 61.38 32.19 60.31
Tue May 03 16:26:15 JST 2016 nnaida2 59.31 32.25 61.75
Tue May 03 16:26:15 JST 2016 nnaida3 64.75 33.44 49.88
Tue May 03 16:26:16 JST 2016 nnaida4 69.31 39.19 54.44
Tue May 03 16:26:16 JST 2016 nnaida5 64.12 32.88 55.38
Tue May 03 16:26:16 JST 2016 nnaida6 66.94 37.88 53.25
Tue May 03 16:26:16 JST 2016 nnaida7 62.44 31.62 0.00
Tue May 03 16:26:17 JST 2016 nnaida8 61.19 31.31 49.38
Tue May 03 16:26:17 JST 2016 nnaida9 65.44 32.06 55.25
Tue May 03 16:26:17 JST 2016 nnaida10 65.62 34.94 65.69
Tue May 03 16:26:18 JST 2016 nnaida11 64.62 33.88 52.25
Tue May 03 16:26:18 JST 2016 nnaida12 72.19 45.12 52.25
Tue May 03 16:26:18 JST 2016 nnaida13 62.12 31.56 50.75
Tue May 03 16:26:18 JST 2016 nnaida14 60.50 32.12 51.69
Tue May 03 16:26:19 JST 2016 nnaida15 60.75 31.25 0.00
Tue May 03 16:26:19 JST 2016 nnaida16 57.31 31.12 50.31
Tue May 03 16:26:19 JST 2016 nnaida17 56.31 30.81 54.94
Tue May 03 16:26:20 JST 2016 nnaida18 61.06 32.50 52.06
Tue May 03 16:26:20 JST 2016 nnaida19 64.62 34.38 57.50
Tue May 03 16:26:20 JST 2016 nnaida20 72.19 42.44 55.62
Tue May 03 16:26:20 JST 2016 nnaida21 64.44 30.88 48.00
Tue May 03 16:26:21 JST 2016 nnaida22 60.06 31.94 45.88
Tue May 03 16:26:21 JST 2016 nnaida23 62.12 32.44 0.00
Tue May 03 16:26:21 JST 2016 nnaida24 65.75 34.25 53.19
Tue May 03 16:26:21 JST 2016 nnaida25 57.69 30.06 58.50
Tue May 03 16:26:22 JST 2016 nnaida26 60.81 29.94 56.31
Tue May 03 16:26:22 JST 2016 nnaida27 61.19 32.12 51.00
Tue May 03 16:26:22 JST 2016 nnaida28 65.94 32.75 0.00
Tue May 03 16:26:23 JST 2016 nnaida29 59.50 29.31 53.12
Tue May 03 16:26:23 JST 2016 nnaida30 60.50 34.75 55.00
Tue May 03 16:26:23 JST 2016 nnaida31 59.06 30.31 47.12
Tue May 03 16:26:23 JST 2016 nnaida32 61.44 31.25 51.94
Tue May 03 16:27:24 JST 2016 nnaida1 61.31 32.19 60.31
Tue May 03 16:27:24 JST 2016 nnaida2 59.25 32.19 61.75
Tue May 03 16:27:24 JST 2016 nnaida3 64.75 33.44 49.94
Tue May 03 16:27:25 JST 2016 nnaida4 69.31 39.12 54.44
Tue May 03 16:27:25 JST 2016 nnaida5 64.12 32.88 55.31
Tue May 03 16:27:25 JST 2016 nnaida6 67.00 37.94 53.19
Tue May 03 16:27:25 JST 2016 nnaida7 62.38 31.56 0.00
Tue May 03 16:27:26 JST 2016 nnaida8 61.12 31.44 49.38
Tue May 03 16:27:26 JST 2016 nnaida9 65.44 32.06 55.31
Tue May 03 16:27:26 JST 2016 nnaida10 65.56 34.94 65.69
Tue May 03 16:27:27 JST 2016 nnaida11 64.69 33.81 52.19
Tue May 03 16:27:27 JST 2016 nnaida12 72.31 45.00 52.25
Tue May 03 16:27:27 JST 2016 nnaida13 62.12 31.56 50.75
Tue May 03 16:27:27 JST 2016 nnaida14 60.50 32.06 51.69
Tue May 03 16:27:28 JST 2016 nnaida15 60.69 31.31 0.00
Tue May 03 16:27:28 JST 2016 nnaida16 57.31 31.12 50.25
Tue May 03 16:27:28 JST 2016 nnaida17 56.31 30.75 55.00
Tue May 03 16:27:28 JST 2016 nnaida18 61.06 32.50 51.94
Tue May 03 16:27:29 JST 2016 nnaida19 64.62 34.31 57.44
Tue May 03 16:27:29 JST 2016 nnaida20 72.19 42.50 55.62
Tue May 03 16:27:29 JST 2016 nnaida21 64.50 30.94 47.88
Tue May 03 16:27:30 JST 2016 nnaida22 60.12 31.94 46.00
Tue May 03 16:27:30 JST 2016 nnaida23 62.12 32.50 0.00
Tue May 03 16:27:30 JST 2016 nnaida24 65.69 34.31 53.25
Tue May 03 16:27:30 JST 2016 nnaida25 57.75 29.94 58.50
Tue May 03 16:27:31 JST 2016 nnaida26 60.75 30.00 56.38
Tue May 03 16:27:31 JST 2016 nnaida27 61.19 32.12 51.00
Tue May 03 16:27:31 JST 2016 nnaida28 65.94 32.69 0.00
Tue May 03 16:27:32 JST 2016 nnaida29 59.44 29.25 53.12
Tue May 03 16:27:32 JST 2016 nnaida30 60.50 34.75 55.00
Tue May 03 16:27:32 JST 2016 nnaida31 59.12 30.31 47.06
Tue May 03 16:27:32 JST 2016 nnaida32 61.50 31.25 51.88
Tue May 03 16:28:33 JST 2016 nnaida1 61.38 32.31 60.31
Tue May 03 16:28:33 JST 2016 nnaida2 59.31 32.25 61.75
Tue May 03 16:28:33 JST 2016 nnaida3 64.75 33.38 49.88
Tue May 03 16:28:33 JST 2016 nnaida4 69.25 39.25 54.38
Tue May 03 16:28:34 JST 2016 nnaida5 64.12 32.81 55.31
Tue May 03 16:28:34 JST 2016 nnaida6 67.00 37.94 53.25
Tue May 03 16:28:34 JST 2016 nnaida7 62.38 31.56 0.00
Tue May 03 16:28:35 JST 2016 nnaida8 61.19 31.38 49.44
Tue May 03 16:28:35 JST 2016 nnaida9 65.50 32.06 55.06
Tue May 03 16:28:35 JST 2016 nnaida10 65.56 34.94 65.62
Tue May 03 16:28:35 JST 2016 nnaida11 64.62 33.88 52.19
Tue May 03 16:28:36 JST 2016 nnaida12 72.25 44.81 52.31
Tue May 03 16:28:36 JST 2016 nnaida13 62.00 31.56 50.75
Tue May 03 16:28:36 JST 2016 nnaida14 60.50 32.12 51.56
Tue May 03 16:28:37 JST 2016 nnaida15 60.69 31.19 0.00
Tue May 03 16:28:37 JST 2016 nnaida16 57.31 31.12 50.31
Tue May 03 16:28:37 JST 2016 nnaida17 56.31 30.75 54.94
Tue May 03 16:28:37 JST 2016 nnaida18 61.00 32.56 52.06
Tue May 03 16:28:38 JST 2016 nnaida19 64.62 34.25 57.44
Tue May 03 16:28:38 JST 2016 nnaida20 72.19 42.44 55.50
Tue May 03 16:28:38 JST 2016 nnaida21 64.50 30.94 47.94
Tue May 03 16:28:39 JST 2016 nnaida22 60.12 31.88 45.88
Tue May 03 16:28:39 JST 2016 nnaida23 62.19 32.50 0.00
Tue May 03 16:28:39 JST 2016 nnaida24 65.69 34.19 53.19
Tue May 03 16:28:39 JST 2016 nnaida25 57.62 29.94 58.50
Tue May 03 16:28:40 JST 2016 nnaida26 60.88 30.06 56.38
Tue May 03 16:28:40 JST 2016 nnaida27 61.19 32.06 51.06
Tue May 03 16:28:40 JST 2016 nnaida28 65.94 32.75 0.00
Tue May 03 16:28:40 JST 2016 nnaida29 59.50 29.25 53.19
Tue May 03 16:28:41 JST 2016 nnaida30 60.50 34.69 55.06
Tue May 03 16:28:41 JST 2016 nnaida31 59.06 30.31 47.12
Tue May 03 16:28:41 JST 2016 nnaida32 61.50 31.44 51.94
Tue May 03 16:29:42 JST 2016 nnaida1 61.56 32.38 60.31
Tue May 03 16:29:42 JST 2016 nnaida2 59.50 32.31 61.75
Tue May 03 16:29:42 JST 2016 nnaida3 64.94 33.44 49.81
Tue May 03 16:29:43 JST 2016 nnaida4 69.44 39.19 54.38
Tue May 03 16:29:43 JST 2016 nnaida5 64.31 32.81 55.25
Tue May 03 16:29:43 JST 2016 nnaida6 67.12 38.00 53.12
Tue May 03 16:29:43 JST 2016 nnaida7 62.56 31.62 0.00
Tue May 03 16:29:44 JST 2016 nnaida8 61.38 31.38 49.50
Tue May 03 16:29:44 JST 2016 nnaida9 65.62 32.06 55.19
Tue May 03 16:29:44 JST 2016 nnaida10 65.75 35.00 65.62
Tue May 03 16:29:45 JST 2016 nnaida11 64.88 33.81 52.19
Tue May 03 16:29:45 JST 2016 nnaida12 72.44 45.12 52.25
Tue May 03 16:29:45 JST 2016 nnaida13 62.38 31.50 50.81
Tue May 03 16:29:46 JST 2016 nnaida14 60.69 32.12 51.62
Tue May 03 16:29:46 JST 2016 nnaida15 60.94 31.25 0.00
Tue May 03 16:29:46 JST 2016 nnaida16 57.56 31.19 50.25
Tue May 03 16:29:46 JST 2016 nnaida17 56.44 30.75 54.88
Tue May 03 16:29:47 JST 2016 nnaida18 61.25 32.50 52.00
Tue May 03 16:29:47 JST 2016 nnaida19 64.75 34.44 57.44
Tue May 03 16:29:47 JST 2016 nnaida20 72.31 42.50 55.62
Tue May 03 16:29:48 JST 2016 nnaida21 64.69 30.94 48.00
Tue May 03 16:29:48 JST 2016 nnaida22 60.25 31.94 45.94
Tue May 03 16:29:48 JST 2016 nnaida23 62.44 32.44 0.00
Tue May 03 16:29:49 JST 2016 nnaida24 65.88 34.31 53.38
Tue May 03 16:29:49 JST 2016 nnaida25 57.94 29.94 58.50
Tue May 03 16:29:49 JST 2016 nnaida26 61.00 30.06 56.31
Tue May 03 16:29:49 JST 2016 nnaida27 61.44 32.19 50.94
Tue May 03 16:29:50 JST 2016 nnaida28 66.19 32.75 0.00
Tue May 03 16:29:50 JST 2016 nnaida29 59.62 29.31 53.19
Tue May 03 16:29:51 JST 2016 nnaida30 60.75 34.69 55.06
Tue May 03 16:29:51 JST 2016 nnaida31 59.19 30.38 47.06
Tue May 03 16:29:51 JST 2016 nnaida32 61.62 31.25 51.88
Tue May 03 16:30:51 JST 2016 nnaida1 61.75 32.31 60.25
Tue May 03 16:30:52 JST 2016 nnaida2 59.56 32.25 61.75
Tue May 03 16:30:52 JST 2016 nnaida3 65.12 33.50 49.88
Tue May 03 16:30:52 JST 2016 nnaida4 69.62 39.25 54.44
Tue May 03 16:30:53 JST 2016 nnaida5 64.38 32.88 55.25
Tue May 03 16:30:53 JST 2016 nnaida6 67.31 37.94 53.19
Tue May 03 16:30:53 JST 2016 nnaida7 62.69 31.62 0.00
Tue May 03 16:30:54 JST 2016 nnaida8 61.44 31.44 49.44
Tue May 03 16:30:54 JST 2016 nnaida9 65.75 32.06 55.25
Tue May 03 16:30:54 JST 2016 nnaida10 65.81 35.06 65.69
Tue May 03 16:30:55 JST 2016 nnaida11 65.00 33.94 52.25
Tue May 03 16:30:55 JST 2016 nnaida12 72.56 44.88 52.19
Tue May 03 16:30:55 JST 2016 nnaida13 62.44 31.62 50.88
Tue May 03 16:30:55 JST 2016 nnaida14 60.75 32.19 51.62
Tue May 03 16:30:56 JST 2016 nnaida15 61.00 31.25 0.00
Tue May 03 16:30:56 JST 2016 nnaida16 57.62 31.19 50.25
Tue May 03 16:30:56 JST 2016 nnaida17 56.56 30.81 55.00
Tue May 03 16:30:57 JST 2016 nnaida18 61.38 32.50 52.00
Tue May 03 16:30:57 JST 2016 nnaida19 64.88 34.31 57.50
Tue May 03 16:30:57 JST 2016 nnaida20 72.44 42.56 55.62
Tue May 03 16:30:58 JST 2016 nnaida21 64.75 31.06 47.94
Tue May 03 16:30:58 JST 2016 nnaida22 60.50 31.94 45.88
Tue May 03 16:30:58 JST 2016 nnaida23 62.50 32.56 0.00
Tue May 03 16:30:58 JST 2016 nnaida24 65.94 34.31 53.25
Tue May 03 16:30:59 JST 2016 nnaida25 57.94 30.00 58.50
Tue May 03 16:30:59 JST 2016 nnaida26 61.06 30.12 56.38
Tue May 03 16:30:59 JST 2016 nnaida27 61.56 32.12 50.94
Tue May 03 16:31:00 JST 2016 nnaida28 66.25 32.81 0.00
Tue May 03 16:31:00 JST 2016 nnaida29 59.75 29.31 53.12
Tue May 03 16:31:00 JST 2016 nnaida30 60.81 34.69 55.06
Tue May 03 16:31:01 JST 2016 nnaida31 59.25 30.44 47.00
Tue May 03 16:31:01 JST 2016 nnaida32 61.75 31.38 51.88
Tue May 03 16:32:01 JST 2016 nnaida1 61.75 32.31 60.31
Tue May 03 16:32:02 JST 2016 nnaida2 59.62 32.31 61.81
Tue May 03 16:32:02 JST 2016 nnaida3 65.19 33.56 49.88
Tue May 03 16:32:02 JST 2016 nnaida4 69.56 39.25 54.38
Tue May 03 16:32:03 JST 2016 nnaida5 64.44 32.94 55.25
Tue May 03 16:32:03 JST 2016 nnaida6 67.25 38.00 53.19
Tue May 03 16:32:03 JST 2016 nnaida7 62.69 31.69 0.00
Tue May 03 16:32:03 JST 2016 nnaida8 61.50 31.44 49.31
Tue May 03 16:32:04 JST 2016 nnaida9 65.81 32.19 55.19
Tue May 03 16:32:04 JST 2016 nnaida10 65.94 35.00 65.69
Tue May 03 16:32:04 JST 2016 nnaida11 65.12 34.06 52.19
Tue May 03 16:32:05 JST 2016 nnaida12 72.56 45.19 52.25
Tue May 03 16:32:05 JST 2016 nnaida13 62.44 31.56 50.81
Tue May 03 16:32:05 JST 2016 nnaida14 60.81 32.12 51.62
Tue May 03 16:32:06 JST 2016 nnaida15 61.06 31.19 0.00
Tue May 03 16:32:06 JST 2016 nnaida16 57.69 31.19 50.19
Tue May 03 16:32:06 JST 2016 nnaida17 56.50 30.81 55.00
Tue May 03 16:32:07 JST 2016 nnaida18 61.31 32.56 52.00
Tue May 03 16:32:07 JST 2016 nnaida19 64.81 34.38 57.62
Tue May 03 16:32:07 JST 2016 nnaida20 72.56 42.50 55.56
Tue May 03 16:32:08 JST 2016 nnaida21 64.75 31.06 48.00
Tue May 03 16:32:08 JST 2016 nnaida22 60.50 31.94 45.88
Tue May 03 16:32:08 JST 2016 nnaida23 62.44 32.50 0.00
Tue May 03 16:32:08 JST 2016 nnaida24 66.00 34.44 53.19
Tue May 03 16:32:09 JST 2016 nnaida25 57.94 30.00 58.44
Tue May 03 16:32:09 JST 2016 nnaida26 61.12 30.06 56.44
Tue May 03 16:32:09 JST 2016 nnaida27 61.44 32.19 51.00
Tue May 03 16:32:10 JST 2016 nnaida28 66.31 32.75 0.00
Tue May 03 16:32:10 JST 2016 nnaida29 59.69 29.31 53.12
Tue May 03 16:32:10 JST 2016 nnaida30 60.81 34.75 55.00
Tue May 03 16:32:11 JST 2016 nnaida31 59.25 30.38 47.06
Tue May 03 16:32:11 JST 2016 nnaida32 61.81 31.44 51.94
Tue May 03 16:33:11 JST 2016 nnaida1 61.75 32.31 60.25
Tue May 03 16:33:11 JST 2016 nnaida2 59.69 32.38 61.69
Tue May 03 16:33:12 JST 2016 nnaida3 65.25 33.56 49.81
Tue May 03 16:33:12 JST 2016 nnaida4 69.56 39.25 54.44
Tue May 03 16:33:12 JST 2016 nnaida5 64.44 32.88 55.25
Tue May 03 16:33:13 JST 2016 nnaida6 67.25 38.06 53.12
Tue May 03 16:33:13 JST 2016 nnaida7 62.75 31.69 0.00
Tue May 03 16:33:13 JST 2016 nnaida8 61.50 31.56 49.50
Tue May 03 16:33:14 JST 2016 nnaida9 65.81 32.12 55.19
Tue May 03 16:33:14 JST 2016 nnaida10 65.94 35.06 65.69
Tue May 03 16:33:14 JST 2016 nnaida11 65.06 34.00 52.19
Tue May 03 16:33:15 JST 2016 nnaida12 72.62 44.88 52.31
Tue May 03 16:33:15 JST 2016 nnaida13 62.44 31.62 50.81
Tue May 03 16:33:15 JST 2016 nnaida14 60.81 32.12 51.69
Tue May 03 16:33:16 JST 2016 nnaida15 61.06 31.31 0.00
Tue May 03 16:33:16 JST 2016 nnaida16 57.62 31.19 50.31
Tue May 03 16:33:16 JST 2016 nnaida17 56.56 30.88 55.00
Tue May 03 16:33:16 JST 2016 nnaida18 61.38 32.56 52.00
Tue May 03 16:33:17 JST 2016 nnaida19 64.88 34.38 57.50
Tue May 03 16:33:17 JST 2016 nnaida20 72.50 42.50 55.56
Tue May 03 16:33:17 JST 2016 nnaida21 64.81 31.00 47.94
Tue May 03 16:33:18 JST 2016 nnaida22 60.50 31.94 45.88
Tue May 03 16:33:18 JST 2016 nnaida23 62.56 32.56 0.00
Tue May 03 16:33:18 JST 2016 nnaida24 66.00 34.31 53.25
Tue May 03 16:33:19 JST 2016 nnaida25 58.06 30.06 58.50
Tue May 03 16:33:19 JST 2016 nnaida26 61.19 30.06 56.44
Tue May 03 16:33:19 JST 2016 nnaida27 61.50 32.19 51.00
Tue May 03 16:33:19 JST 2016 nnaida28 66.38 32.75 0.00
Tue May 03 16:33:20 JST 2016 nnaida29 59.81 29.31 53.12
Tue May 03 16:33:20 JST 2016 nnaida30 60.81 34.81 55.06
Tue May 03 16:33:20 JST 2016 nnaida31 59.38 30.31 47.12
Tue May 03 16:33:21 JST 2016 nnaida32 61.81 31.38 51.94
Tue May 03 16:34:21 JST 2016 nnaida1 61.69 32.31 60.31
Tue May 03 16:34:21 JST 2016 nnaida2 59.62 32.38 61.75
Tue May 03 16:34:22 JST 2016 nnaida3 65.12 33.50 49.88
Tue May 03 16:34:22 JST 2016 nnaida4 69.62 39.19 54.44
Tue May 03 16:34:22 JST 2016 nnaida5 64.44 32.81 55.44
Tue May 03 16:34:23 JST 2016 nnaida6 67.38 38.00 53.19
Tue May 03 16:34:23 JST 2016 nnaida7 62.69 31.69 0.00
Tue May 03 16:34:23 JST 2016 nnaida8 61.56 31.50 49.38
Tue May 03 16:34:23 JST 2016 nnaida9 65.81 32.12 55.25
Tue May 03 16:34:24 JST 2016 nnaida10 65.94 35.06 65.69
Tue May 03 16:34:24 JST 2016 nnaida11 65.19 34.12 52.19
Tue May 03 16:34:24 JST 2016 nnaida12 72.62 45.25 52.25
Tue May 03 16:34:25 JST 2016 nnaida13 62.44 31.69 50.75
Tue May 03 16:34:25 JST 2016 nnaida14 60.88 32.25 51.56
Tue May 03 16:34:25 JST 2016 nnaida15 61.12 31.31 0.00
Tue May 03 16:34:26 JST 2016 nnaida16 57.62 31.12 50.31
Tue May 03 16:34:26 JST 2016 nnaida17 56.50 30.81 54.94
Tue May 03 16:34:26 JST 2016 nnaida18 61.38 32.62 52.00
Tue May 03 16:34:27 JST 2016 nnaida19 64.88 34.38 57.44
Tue May 03 16:34:27 JST 2016 nnaida20 72.50 42.62 55.50
Tue May 03 16:34:27 JST 2016 nnaida21 64.81 31.06 48.00
Tue May 03 16:34:28 JST 2016 nnaida22 60.44 32.00 45.94
Tue May 03 16:34:28 JST 2016 nnaida23 62.50 32.56 0.00
Tue May 03 16:34:28 JST 2016 nnaida24 66.06 34.38 53.31
Tue May 03 16:34:28 JST 2016 nnaida25 58.00 30.00 58.50
Tue May 03 16:34:29 JST 2016 nnaida26 61.12 30.19 56.38
Tue May 03 16:34:29 JST 2016 nnaida27 61.44 32.19 51.00
Tue May 03 16:34:29 JST 2016 nnaida28 66.38 32.81 0.00
Tue May 03 16:34:30 JST 2016 nnaida29 59.75 29.31 53.25
Tue May 03 16:34:30 JST 2016 nnaida30 60.81 34.81 55.06
Tue May 03 16:34:30 JST 2016 nnaida31 59.31 30.25 47.19
Tue May 03 16:34:31 JST 2016 nnaida32 61.88 31.38 51.88
Tue May 03 16:35:31 JST 2016 nnaida1 61.75 32.38 60.25
Tue May 03 16:35:31 JST 2016 nnaida2 59.56 32.38 61.75
Tue May 03 16:35:32 JST 2016 nnaida3 65.19 33.50 49.94
Tue May 03 16:35:32 JST 2016 nnaida4 69.62 39.19 54.38
Tue May 03 16:35:32 JST 2016 nnaida5 64.50 32.94 55.31
Tue May 03 16:35:32 JST 2016 nnaida6 67.31 37.94 53.25
Tue May 03 16:35:33 JST 2016 nnaida7 62.75 31.69 0.00
Tue May 03 16:35:33 JST 2016 nnaida8 61.56 31.56 49.38
Tue May 03 16:35:33 JST 2016 nnaida9 65.81 32.12 55.25
Tue May 03 16:35:34 JST 2016 nnaida10 66.00 35.06 65.75
Tue May 03 16:35:34 JST 2016 nnaida11 65.12 34.06 52.25
Tue May 03 16:35:34 JST 2016 nnaida12 72.62 44.94 52.31
... 10485 more lines ...
  200   Tue May 3 08:46:25 2016 TDMIDAS updates - problems
1) Unable to enable data transfer

   From RunControl unable to 'Enable #1 All' or 'Enable #2 All'

   in the former case, no 'X' symbol appears by the sttaus of each acqserver
   in the latter case I obtain an error

   see attachments 1-3

   Note the file referred to in the error message is

-rwxr-xr-x. 1 npg npgstaff 16503 Mar  9 22:46 DataAcquisitionControl.tml

2) Unable to plot temperature data

   See attachment 4 for error message

3) MERGE shows 64 data links - only the first 32 can be toggled (enable/disable)
   For 32x FEE64s should be able to toggle 64? Configuration file issue?

MERGE Program Release V3/x86_64 (Sep  3 2014, 18:22:23) starting

Merge: Histogramming not using threads
Merge: debugging initialised: off.
Merge: opening buffer for Merge_EventBuffer, size 0x800
Merge: returning merge memory at virtual 0xcb5c50
Event Buffer virtual address: 0xcb5c50
Merge: initialising for 8 links: 2 3 4 5 6 7 8 9 
Merge: opening buffer for link2_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f184cb93010
Link Data buffer 0 (Link2), length 3932160 (0x3c0000) bytes mapped at: 0x7f184cb93010 - 0x7f184cf5300f
Merge: opening buffer for link3_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f184c7d2010
Link Data buffer 1 (Link3), length 3932160 (0x3c0000) bytes mapped at: 0x7f184c7d2010 - 0x7f184cb9200f
Merge: opening buffer for link4_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f184c411010
Link Data buffer 2 (Link4), length 3932160 (0x3c0000) bytes mapped at: 0x7f184c411010 - 0x7f184c7d100f
Merge: opening buffer for link5_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f184c050010
Link Data buffer 3 (Link5), length 3932160 (0x3c0000) bytes mapped at: 0x7f184c050010 - 0x7f184c41000f
Merge: opening buffer for link6_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f184bc8f010
Link Data buffer 4 (Link6), length 3932160 (0x3c0000) bytes mapped at: 0x7f184bc8f010 - 0x7f184c04f00f
Merge: opening buffer for link7_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f184b8ce010
Link Data buffer 5 (Link7), length 3932160 (0x3c0000) bytes mapped at: 0x7f184b8ce010 - 0x7f184bc8e00f
Merge: opening buffer for link8_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f184b50d010
Link Data buffer 6 (Link8), length 3932160 (0x3c0000) bytes mapped at: 0x7f184b50d010 - 0x7f184b8cd00f
Merge: opening buffer for link9_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f184b14c010
Link Data buffer 7 (Link9), length 3932160 (0x3c0000) bytes mapped at: 0x7f184b14c010 - 0x7f184b50c00f
Queue 0 (Link2) starts at 0x7f184cb93010
Queue 1 (Link3) starts at 0x7f184c7d2010
Queue 2 (Link4) starts at 0x7f184c411010
Queue 3 (Link5) starts at 0x7f184c050010
Queue 4 (Link6) starts at 0x7f184bc8f010
Queue 5 (Link7) starts at 0x7f184b8ce010
Queue 6 (Link8) starts at 0x7f184b50d010
Queue 7 (Link9) starts at 0x7f184b14c010
Merge: OutputTrace set to 1
Merge: Histogramming using threads
MERGE Merge setup complete
Data Acquisition using tape server localhost on port 0
Initialising communication with tape server
Setting Transfer Block Size 65536
Setting Transfer Mode 3
Setting Overlap Mode 0
Setting nice 0
TCP transfer library version 3.12
TCP socket send buffer was 16384 - now 249856
TCP socket receive buffer was 87380 - now 249856
TCP socket created OK - now connecting to localhost port 10305
Transfer Error - : Connection refused
connect() failed:  
MERGE now ready to be initialised and started
MRGE Stats created and initialised
MERGE Data Link (7866): Starting the network interface
MERGE Data Link (7866): TCP socket receive buffer was 87380 - now 249856
MERGE Data Link (7866): TCP socket send buffer was 16384 - now 249856
MERGE Data Link (7866): MERGE Data Link using TCP port 11032.
MERGE Data Link (7866): Entering server loop
MERGE Data Link (7866): listening on port 11032
Merge: debugging initialised: off.
Event Buffer virtual address: 0xcb5c50
Merge: initialising for 32 links: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
29 30 31 
Merge: opening buffer for link0_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f184a367010
Link Data buffer 0 (Link0), length 3932160 (0x3c0000) bytes mapped at: 0x7f184a367010 - 0x7f184a72700f
Merge: opening buffer for link1_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f1849fa6010
Link Data buffer 1 (Link1), length 3932160 (0x3c0000) bytes mapped at: 0x7f1849fa6010 - 0x7f184a36600f
Link Data buffer 2 (Link2), length 3932160 (0x3c0000) bytes mapped at: 0x7f184cb93010 - 0x7f184cf5300f
Link Data buffer 3 (Link3), length 3932160 (0x3c0000) bytes mapped at: 0x7f184c7d2010 - 0x7f184cb9200f
Link Data buffer 4 (Link4), length 3932160 (0x3c0000) bytes mapped at: 0x7f184c411010 - 0x7f184c7d100f
Link Data buffer 5 (Link5), length 3932160 (0x3c0000) bytes mapped at: 0x7f184c050010 - 0x7f184c41000f
Link Data buffer 6 (Link6), length 3932160 (0x3c0000) bytes mapped at: 0x7f184bc8f010 - 0x7f184c04f00f
Link Data buffer 7 (Link7), length 3932160 (0x3c0000) bytes mapped at: 0x7f184b8ce010 - 0x7f184bc8e00f
Link Data buffer 8 (Link8), length 3932160 (0x3c0000) bytes mapped at: 0x7f184b50d010 - 0x7f184b8cd00f
Link Data buffer 9 (Link9), length 3932160 (0x3c0000) bytes mapped at: 0x7f184b14c010 - 0x7f184b50c00f
Merge: opening buffer for link10_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f1849be5010
Link Data buffer 10 (Link10), length 3932160 (0x3c0000) bytes mapped at: 0x7f1849be5010 - 0x7f1849fa500f
Merge: opening buffer for link11_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f1849824010
Link Data buffer 11 (Link11), length 3932160 (0x3c0000) bytes mapped at: 0x7f1849824010 - 0x7f1849be400f
Merge: opening buffer for link12_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f1849463010
Link Data buffer 12 (Link12), length 3932160 (0x3c0000) bytes mapped at: 0x7f1849463010 - 0x7f184982300f
Merge: opening buffer for link13_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f18490a2010
Link Data buffer 13 (Link13), length 3932160 (0x3c0000) bytes mapped at: 0x7f18490a2010 - 0x7f184946200f
Merge: opening buffer for link14_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f1848ce1010
Link Data buffer 14 (Link14), length 3932160 (0x3c0000) bytes mapped at: 0x7f1848ce1010 - 0x7f18490a100f
Merge: opening buffer for link15_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f1848920010
Link Data buffer 15 (Link15), length 3932160 (0x3c0000) bytes mapped at: 0x7f1848920010 - 0x7f1848ce000f
Merge: opening buffer for link16_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f184855f010
Link Data buffer 16 (Link16), length 3932160 (0x3c0000) bytes mapped at: 0x7f184855f010 - 0x7f184891f00f
Merge: opening buffer for link17_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f184819e010
Link Data buffer 17 (Link17), length 3932160 (0x3c0000) bytes mapped at: 0x7f184819e010 - 0x7f184855e00f
Merge: opening buffer for link18_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f1847ddd010
Link Data buffer 18 (Link18), length 3932160 (0x3c0000) bytes mapped at: 0x7f1847ddd010 - 0x7f184819d00f
Merge: opening buffer for link19_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f1847a1c010
Link Data buffer 19 (Link19), length 3932160 (0x3c0000) bytes mapped at: 0x7f1847a1c010 - 0x7f1847ddc00f
Merge: opening buffer for link20_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f184765b010
Link Data buffer 20 (Link20), length 3932160 (0x3c0000) bytes mapped at: 0x7f184765b010 - 0x7f1847a1b00f
Merge: opening buffer for link21_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f184729a010
Link Data buffer 21 (Link21), length 3932160 (0x3c0000) bytes mapped at: 0x7f184729a010 - 0x7f184765a00f
Merge: opening buffer for link22_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f1846ed9010
Link Data buffer 22 (Link22), length 3932160 (0x3c0000) bytes mapped at: 0x7f1846ed9010 - 0x7f184729900f
Merge: opening buffer for link23_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f1846b18010
Link Data buffer 23 (Link23), length 3932160 (0x3c0000) bytes mapped at: 0x7f1846b18010 - 0x7f1846ed800f
Merge: opening buffer for link24_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f1846757010
Link Data buffer 24 (Link24), length 3932160 (0x3c0000) bytes mapped at: 0x7f1846757010 - 0x7f1846b1700f
Merge: opening buffer for link25_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f1846396010
Link Data buffer 25 (Link25), length 3932160 (0x3c0000) bytes mapped at: 0x7f1846396010 - 0x7f184675600f
Merge: opening buffer for link26_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f1845fd5010
Link Data buffer 26 (Link26), length 3932160 (0x3c0000) bytes mapped at: 0x7f1845fd5010 - 0x7f184639500f
Merge: opening buffer for link27_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f1845c14010
Link Data buffer 27 (Link27), length 3932160 (0x3c0000) bytes mapped at: 0x7f1845c14010 - 0x7f1845fd400f
Merge: opening buffer for link28_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f1845853010
Link Data buffer 28 (Link28), length 3932160 (0x3c0000) bytes mapped at: 0x7f1845853010 - 0x7f1845c1300f
Merge: opening buffer for link29_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f1845492010
Link Data buffer 29 (Link29), length 3932160 (0x3c0000) bytes mapped at: 0x7f1845492010 - 0x7f184585200f
Merge: opening buffer for link30_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f18450d1010
Link Data buffer 30 (Link30), length 3932160 (0x3c0000) bytes mapped at: 0x7f18450d1010 - 0x7f184549100f
Merge: opening buffer for link31_Data, size 0x3c0000
Merge: returning merge memory at virtual 0x7f1844d10010
Link Data buffer 31 (Link31), length 3932160 (0x3c0000) bytes mapped at: 0x7f1844d10010 - 0x7f18450d000f
Queue 0 (Link0) starts at 0x7f184a367010
Queue 1 (Link1) starts at 0x7f1849fa6010
Queue 2 (Link2) starts at 0x7f184cb93010
Queue 3 (Link3) starts at 0x7f184c7d2010
Queue 4 (Link4) starts at 0x7f184c411010
Queue 5 (Link5) starts at 0x7f184c050010
Queue 6 (Link6) starts at 0x7f184bc8f010
Queue 7 (Link7) starts at 0x7f184b8ce010
Queue 8 (Link8) starts at 0x7f184b50d010
Queue 9 (Link9) starts at 0x7f184b14c010
Queue 10 (Link10) starts at 0x7f1849be5010
Queue 11 (Link11) starts at 0x7f1849824010
Queue 12 (Link12) starts at 0x7f1849463010
Queue 13 (Link13) starts at 0x7f18490a2010
Queue 14 (Link14) starts at 0x7f1848ce1010
Queue 15 (Link15) starts at 0x7f1848920010
Queue 16 (Link16) starts at 0x7f184855f010
Queue 17 (Link17) starts at 0x7f184819e010
Queue 18 (Link18) starts at 0x7f1847ddd010
Queue 19 (Link19) starts at 0x7f1847a1c010
Queue 20 (Link20) starts at 0x7f184765b010
Queue 21 (Link21) starts at 0x7f184729a010
Queue 22 (Link22) starts at 0x7f1846ed9010
Queue 23 (Link23) starts at 0x7f1846b18010
Queue 24 (Link24) starts at 0x7f1846757010
Queue 25 (Link25) starts at 0x7f1846396010
Queue 26 (Link26) starts at 0x7f1845fd5010
Queue 27 (Link27) starts at 0x7f1845c14010
Queue 28 (Link28) starts at 0x7f1845853010
Queue 29 (Link29) starts at 0x7f1845492010
Queue 30 (Link30) starts at 0x7f18450d1010
Queue 31 (Link31) starts at 0x7f1844d10010
MERGE Merge setup complete
Initialising communication with tape server localhost on port 0
Setting Transfer Block Size 65536
Setting Transfer Mode 3
Setting Overlap Mode 0
Setting nice 0
TCP transfer library version 3.12
TCP socket send buffer was 16384 - now 249856
TCP socket receive buffer was 87380 - now 249856
TCP socket created OK - now connecting to localhost port 10305
Connected to localhost port 10305
Merge state now Going
Merge: Searching for timestamp 0 or greater
Merge state now Paused
Merge state now Stopped

4) mtimeout not defined following SETUP

See attachment 5

5) No data acquisition
   No histogram data. No SYNCs.

   See attachments 6-8
Attachment 1: 51.png
51.png
Attachment 2: 52.png
52.png
Attachment 3: DataAcquisitionControl.tml

[Doc_Dynamic]

[global env; source [file join $env(MIDASBASE) TclHttpd Html settings.tml]]

<!
[global Httpd; upvar #0 Httpd[set Httpd(currentSocket)] data; set ClientIPAddress $data(ipaddr); set MyInfo $data(self)]
>

<html>
<head>

  <title>Run Control @ [global env; set env(ComputerName)]</title>

<link rel="stylesheet" type="text/css" href="/css/buttons.css"/>

<script type="text/javascript" language="JavaScript" src="/js/Common.js"></script>
<script type="text/javascript" language="JavaScript" src="/js/FormChek.js"></script>
<script type="text/javascript" language="JavaScript" src="DataAcquisitionControl.js"></script>

</head>

<body>

<NOSCRIPT>
<hr>
<h2>
Your browser does not support JavaScript.
This service requires a JavaScript compatible browser. </h2> <hr> </NOSCRIPT> <p align=center> <table cellpadding=0 cellspacing=0 border=0 width=100%> <tr> <td align=left> <font size=4><b>Data Acquisition Run Control @ [set MyInfo]</b></font> </td> <td align=right> <font size=4><b>client address is [set ClientIPAddress]</b></font> </td> <td align=right> <input type=image src="/images/midas.gif" name=MIDAS title="MIDAS Home Page" onClick="click_MIDAS()"> <input type=image src="/images/tclp.gif" name=TCL title="Tcl/Tk Home Page" onClick="click_TCL()"> </td> </tr> </table> </p> <hr> <! [namespace eval DataAcquisitionControl { global env source [file join $env(MIDASBASE) TclHttpd tcl Common common.tcl] cd [file join $env(MIDASBASE) TclHttpd Html DataAcquisitionControl] source DataAcquisitionControl.tcl }] > <form action=[ncgi::urlStub] name=RunControl method=post> <input type=hidden name=Widget value="undefined"> <p align=center> <table cellpadding=0 cellspacing=0 border=0 width=100%> <tr> <td width=50% align=center> [namespace eval DataAcquisitionControl { if {[llength $::DataAcquisition::ACQSERVERS] > 1} {set html "Acquisition Servers"} else {set html ""} set html }] [namespace eval DataAcquisitionControl { set html "" if {[llength $::DataAcquisition::ACQSERVERS] > 1} { append html "<select name=ACQSERVER size=1 onChange=\"click_ACQSERVER(document.RunControl, document.RunControl.ACQSERVER.value)\">" } set s 0 foreach item $::DataAcquisition::ACQSERVERS { if {$::DataAcquisition::ACQSERVER == $item} {append html "<option selected>$item</option>"; set s 1} else {append html "<option>$item</option>"} } if {$s == 0} {append html "<option selected>-</option>"} if {[llength $::DataAcquisition::ACQSERVERS] > 1} {append html "</select>"} else {set html ""} set html }] </td> <td width=50% align=center> [namespace eval DataAcquisitionControl { if {[llength $::DataAcquisition::ACQSERVERS] > 1} then { set html "Act on ALL Data Acquisition Servers?<" append html "input type=checkbox name=ALLSERVERS" if {$allservers == 1} {append html " checked"} append html " onClick=click_ALLSERVERS(document.RunControl)" set html } }] </td> </tr> </table> </p> <p align=center> [namespace eval DataAcquisitionControl { set html "<font size=6><b>Server State</b></font>" append html "<table cellpadding=4 cellspacing=4 border=1 align=center cols=8>" set k 1 for {set i 0} {$i < $NRows} {incr i} { append html "<tr>" for {set j 0} {$j < $NCols} {incr j} { if {$SState($k) == 1} { append html "<td align=center valign=middle bgcolor=Green>" } else { append html "<td align=center valign=middle bgcolor=Red>" } if {$k <= [llength $::DataAcquisition::ACQSERVERS]} { set s [lindex $::DataAcquisition::ACQSERVERS [expr $k-1]] append html "<button name=S$k onClick=\"click_SSTATE(document.RunControl,$k)\"> $s </button>" } else { append html "<button name=S$k DISABLED> $k </button>" } incr k append html "</td>" } append html "</tr>" } append html "</table>" if {$allservers == 0} {set html ""} set html }] </p> <hr> <p align="center"> [namespace eval DataAcquisitionControl { if {$allservers == 0 && [llength $::DataAcquisition::ACQSERVERS] > 1} then \ {set html "<b>Current Acquisition Server [set ::DataAcquisition::ACQSERVER]</b>"} }] </p> <p> <table cellpadding=0 cellspacing=0 border=0 width=100%> <tr> [namespace eval DataAcquisitionControl { set html "" append html "<td width=50% align=center>" append html "<input type=image name=DORESET SRC=reset.jpg onClick=\"click_doreset(document.RunControl)\"" append html "</td>" switch $AcqCode { 0 { append html "<td width=50% align=center>" append html "<input type=image name=DOGO SRC=go.jpg onClick=\"click_dogo(document.RunControl)\"" append html "</td>" } 1 { append html "<td width=50% align=center>" append html "<input type=image name=DOSTOP SRC=stop.jpg onClick=\"click_dostop(document.RunControl)\"" append html "</td>" } 2 { append html "<td width=50% align=center>" append html "<input type=image name=DOSETUP SRC=setup.jpg onClick=\"click_dosetup(document.RunControl)\"" append html "</td>" } default {} } set html }] </tr> </table> </p> [namespace eval DataAcquisitionControl { if {$allservers == 0} { ;# for selected server give graphical status set html "<p align=center>" append html "<img src=state.jpg width=250 height=38>" switch $AcqCode { 0 {append html "<img src=s0.jpg width=250 height=38> <img src=blank.jpg width=250 height=38>"} 1 {append html "<img src=s1.jpg width=250> <img src=blank.jpg width=250>"} 2 {append html "<img src=s2.jpg width=250> <img src=r2.jpg width=250>"} 3 {append html "<img src=s3.jpg width=250 height=38> <img src=wait.jpg width=250 height=38>"} 4 {append html "<img src=s4.jpg width=250> <img src=wait.jpg width=250>"} 5 {append html "<img src=s5.jpg width=250> <img src=wait.jpg width=250>"} 6 {append html "<img src=s6.jpg width=250> <img src=try.jpg width=250>"} 7 {append html "<img src=s7.jpg width=250> <img src=wait.jpg width=250>"} 8 {append html "<img src=s8.jpg width=250> <img src=try.jpg width=250>"} 9 {append html "<img src=s9.jpg width=250> <img src=wait.jpg width=250>"} default {} } append html "</p>" } else { ;# show state of all servers set html "<p align=center>" append html "<table cellpadding=0 cellspacing=0 border=1 width=100%>" set j 0 set k 0 foreach item $::DataAcquisition::ACQSERVERS { if {$j == 0} {append html "<tr>"} append html "<td width=25% align=center>" append html "<table cellpadding=0 cellspacing=0 border=0 width=100%>" append html "<tr>" append html "<td width=46% align=center>$item</td>" append html "<td width=46% align=center>$::DataAcquisition::AcqSysState($item)</td>" if {[lindex $::DataAcquisition::EnableHistogramming $k] == 1} {append html "<td width=4% align=right>H</td>"} \ else {append html "<td width=5% align=right>&nbsp</td>"} if {$::DataAcquisition::DataTransferStreams == 1} { if {[lindex $::DataAcquisition::EnableDataTransfer $k] == 1} {append html "<td width=4% align=right>X</td>"} \ else {append html "<td width=5% align=right>&nbsp</td>"} } if {$::DataAcquisition::DataTransferStreams == 2} { if {[lindex $::DataAcquisition::EnableDataTransfer $k] == 1} {append html "<td width=4% align=right>X</td>"} \ else {append html "<td width=5% align=right>&nbsp</td>"} if {[lindex $::DataAcquisition::EnableDataTransfer2 $k] == 1} {append html "<td width=4% align=right>X</td>"} \ else {append html "<td width=5% align=right>&nbsp</td>"} } append html "</tr></table>" incr j if {$j == 4} {append html "</tr>"; set j 0} incr k } append html "</tr></table></p>" } set html }] <p align=center> <table cellpadding=0 cellspacing=0 border=0 width=100%> <tr> <td width=50% align=center> [namespace eval DataAcquisitionControl { if {$allservers == 0} { ;# for selected server set html "Histogramming on&nbsp&nbsp" append html "<input type=checkbox name=HIST onClick=\"click_HistEnable(document.RunControl,document.RunControl.HIST.value)\"" if {$::DataAcquisition::EnableHistogramming == 1} {append html " checked value=off"} else {set append " value=on"} append html ">" append html "</td>" if {$::DataAcquisition::DataTransferStreams == 1} { append html "<td width=50% align=center>" append html "Data Transfer on&nbsp&nbsp" append html "<input type=checkbox name=XFER onClick=\"click_XferEnable(document.RunControl,document.RunControl.XFER.value)\"" if {$::DataAcquisition::EnableDataTransfer == 1} {append html " checked value=off>"} else {append html " value=on>"} append html "</td>" } if {$::DataAcquisition::DataTransferStreams == 2} { append html "<td width=25% align=center>" append html "Data Transfer #1 on&nbsp&nbsp" append html "<input type=checkbox name=XFER onClick=\"click_XferEnable(document.RunControl,document.RunControl.XFER.value)\"" if {$::DataAcquisition::EnableDataTransfer == 1} {append html " checked value=off>"} else {append html " value=on>"} append html "</td>"
... 159 more lines ...
Attachment 4: 50.png
50.png
Attachment 5: 54.png
54.png
Attachment 6: 60.png
60.png
Attachment 7: 61.png
61.png
Attachment 8: 62.png
62.png
  199   Tue May 3 08:37:50 2016 TDMIDAS updates
MIDAS updated per instructions of VFEP (I append the new and old versions of startup.tcl and aidacommon)

I have generated the AIDA update for V8 as 2 tarballs.

These are accessed using    http://npg.dl.ac.uk/MIDAS/MIDAS_Release/

The files you want are the 3th and 4th

http://npg.dl.ac.uk/MIDAS/MIDAS_Release/AIDAExecV8_Update240416.tgz
http://npg.dl.ac.uk/MIDAS/MIDAS_Release/AIDA_Update240416.tgz

The AIDAExecV8...    is just the data acq program
and AIDA_Update...     is all the  Html/tcl  updates

for information here are the commands I Used to create

tar -zcf  AIDA_Update240416.tgz TclHttpd/Html/AIDA TclHttpd/Html/DataAcquisitionControl TclHttpd/Html/Spectrum
TclHttpd/Html/RunControl TclHttpd/Html/MERGE TclHttpd/tcl/Common SOAP/tcl/SpectrumClient.tcl
tar -zcf  AIDAExecV8_Update240416.tgz Data_Acq/bin/linux-ppc_4xx/AidaExecV8


 JUst click on the name and  select   Save  


 to install

first move existing files which you will replace out of the way

cd /MIDAS
mv TclHttpd/Html/AIDA TclHttpd/Html/AIDA_BAK
mv TclHttpd/Html/DataAcquisitionControl TclHttpd/Html/DataAcquisitionControl_BAK
mv TclHttpd/Html/Spectrum TclHttpd/Html/Spectrum_BAK
mv TclHttpd/Html/RunControl  TclHttpd/Html/RunControl_BAK
mv TclHttpd/Html/MERGE TclHttpd/Html/MERGE_BAK
mv TclHttpd/tcl/Common TclHttpd/tcl/Common_BAK
mv SOAP/tcl/SpectrumClient.tcl SOAP/tcl/SpectrumClient.tcl_BAK


now install the updates
the    *********   is where you saved the tarballs to  
  possibly    ~/Downloads/



cd /MIDAS
tar -zxf *********AIDA_Update240416.tgz
tar -zxf *********AIDAExecV8_Update240416.tgz


 THis will install the updates.


I attach the  startup.tcl  file used for the TclHttpd  (/MIDAS/config/TclHttpd/aidas1/)
 The important bit is adding    set DataTransferStreams 2


and the file  (aidacommon) used for starting the data acq programs   (/MIDAS/linux-ppc_4xx/startup)
  Change V7  to V8





Vic
Attachment 1: startup.tcl
Setting BGColor "BlanchedAlmond"
   Setting TextColor "red"

      Setting ProjectName  AIDA
      Setting ProjectImage AIDA.gif
      Setting ProjectURL   "http://npg.dl.ac.uk/NPG/Projects/Fair.html"


  Setting Option1Name STFC
  Setting Option1URL  "stfc.ac.uk"
  Setting Option1Image stfc.jpg


global MessageLoggerServerHost
  set  MessageLoggerServerHost elog.ph.ed.ac.uk

    package require  MessageLoggerClient 

  Setting Option3Name "Elog Server"
  Setting Option3URL  "https://elog.ph.ed.ac.uk/AIDA"

#    Install required services

   package require XAIDAAccessClient  ;# for Client end - ie AIDA server workstation  sets MIDAS_XAIDAAccessClient_Exists (SOAP)

   package require XAD9252AccessClient ;# for Client end - ie AIDA server workstation  sets MIDAS_XAD9252AccessClient_Exists (SOAP)

namespace eval DataAcquisition {
    variable PROJECT AIDA
    variable ACQSERVERS; set ACQSERVERS {}
    variable PACQSERVERS; set PACQSERVERS { nnaida1 nnaida2 nnaida5 nnaida6  nnaida9 nnaida10 nnaida13 nnaida14 nnaida17 nnaida18 nnaida21 nnaida22 nnaida25 nnaida26 nnaida29 nnaida30 }
    variable NACQSERVERS; set NACQSERVERS { nnaida3 nnaida4 nnaida7 nnaida8 nnaida11 nnaida12 nnaida15 nnaida16 nnaida19 nnaida20 nnaida23 nnaida24 nnaida27 nnaida28 nnaida31 nnaida32 }

    lappend ACQSERVERS nnaida1
    lappend ACQSERVERS nnaida2
    lappend ACQSERVERS nnaida3
    lappend ACQSERVERS nnaida4
    lappend ACQSERVERS nnaida5
    lappend ACQSERVERS nnaida6
    lappend ACQSERVERS nnaida7
    lappend ACQSERVERS nnaida8
    lappend ACQSERVERS nnaida9
    lappend ACQSERVERS nnaida10
    lappend ACQSERVERS nnaida11
    lappend ACQSERVERS nnaida12
    lappend ACQSERVERS nnaida13
    lappend ACQSERVERS nnaida14
    lappend ACQSERVERS nnaida15
    lappend ACQSERVERS nnaida16
    lappend ACQSERVERS nnaida17
    lappend ACQSERVERS nnaida18
    lappend ACQSERVERS nnaida19
    lappend ACQSERVERS nnaida20
    lappend ACQSERVERS nnaida21
    lappend ACQSERVERS nnaida22
    lappend ACQSERVERS nnaida23
    lappend ACQSERVERS nnaida24
    lappend ACQSERVERS nnaida25
    lappend ACQSERVERS nnaida26
    lappend ACQSERVERS nnaida27
    lappend ACQSERVERS nnaida28
    lappend ACQSERVERS nnaida29
    lappend ACQSERVERS nnaida30
    lappend ACQSERVERS nnaida31
    lappend ACQSERVERS nnaida32

    variable DataTransferStreams; set DataTransferStreams 2
}

namespace eval AIDA {
      variable ModuleMenu; set ModuleMenu $::DataAcquisition::ACQSERVERS
      variable TSMaster; set TSMaster nnaida5
      variable FEE64 [first $ModuleMenu]
      variable ConfigBase; set ConfigBase [file join $env(MIDASBASE) config TclHttpd]
}

    Setting DataBaseRoot "/MIDAS/DB"
    package require DataBaseAccessServer
    package require NetVarsServer 1.1
    package require SigTaskServer

    package require MemSasServer

#    Install services for Run Control

namespace eval $::DataAcquisition::PROJECT {
    variable DBRootName [file join EXPERIMENTS AIDA]
    variable DBNodeBase 2012
}

  package require AIDARunControl


  Setting Option7Name "Project Home Page"
  Setting Option7URL  "http://npg.dl.ac.uk/NPG/Projects/Fair.html"

  Setting Option8Name "Server Software Home Page"
  Setting Option8URL  "http://npg.dl.ac.uk/MIDAS/download/WebServices.html"
Attachment 2: startup.tcl.BAK-030516

   Setting BGColor "BlanchedAlmond"
   Setting TextColor "red"

      Setting ProjectName  AIDA
      Setting ProjectImage AIDA.gif
      Setting ProjectURL   "http://npg.dl.ac.uk/NPG/Projects/Fair.html"


  Setting Option1Name STFC
  Setting Option1URL  "stfc.ac.uk"
  Setting Option1Image stfc.jpg


#global MessageLoggerServerHost
#  set  MessageLoggerServerHost nndhcp077.dl.ac.uk

#    package require  MessageLoggerClient 

  Setting Option3Name "Elog Server"
  Setting Option3URL  "https://elog.ph.ed.ac.uk/AIDA"

#    Install required services

   package require XAIDAAccessClient  ;# for Client end - ie AIDA server workstation  sets MIDAS_XAIDAAccessClient_Exists (SOAP)

   package require XAD9252AccessClient ;# for Client end - ie AIDA server workstation  sets MIDAS_XAD9252AccessClient_Exists (SOAP)

namespace eval DataAcquisition {
     variable ACQSERVERS; set ACQSERVERS {}
 
     variable PACQSERVERS; set PACQSERVERS { nnaida1 nnaida2 nnaida5 nnaida6  nnaida9 nnaida10 nnaida13 nnaida14 nnaida17 nnaida18 nnaida21 nnaida22 nnaida25 nnaida26 nnaida29 nnaida30}
     variable NACQSERVERS; set NACQSERVERS { nnaida3 nnaida4 nnaida7 nnaida8 nnaida11 nnaida12 nnaida15 nnaida16 nnaida19 nnaida20 nnaida23 nnaida24 nnaida27 nnaida28 nnaida31 nnaida32}

    lappend ACQSERVERS nnaida1
    lappend ACQSERVERS nnaida2
    lappend ACQSERVERS nnaida3
    lappend ACQSERVERS nnaida4
    lappend ACQSERVERS nnaida5
    lappend ACQSERVERS nnaida6
    lappend ACQSERVERS nnaida7
    lappend ACQSERVERS nnaida8
    lappend ACQSERVERS nnaida9
    lappend ACQSERVERS nnaida10
    lappend ACQSERVERS nnaida11
    lappend ACQSERVERS nnaida12
    lappend ACQSERVERS nnaida13
    lappend ACQSERVERS nnaida14
    lappend ACQSERVERS nnaida15
    lappend ACQSERVERS nnaida16
    lappend ACQSERVERS nnaida17
    lappend ACQSERVERS nnaida18
    lappend ACQSERVERS nnaida19
    lappend ACQSERVERS nnaida20
    lappend ACQSERVERS nnaida21
    lappend ACQSERVERS nnaida22
    lappend ACQSERVERS nnaida23
    lappend ACQSERVERS nnaida24
    lappend ACQSERVERS nnaida25
    lappend ACQSERVERS nnaida26
    lappend ACQSERVERS nnaida27
    lappend ACQSERVERS nnaida28
    lappend ACQSERVERS nnaida29
    lappend ACQSERVERS nnaida30
    lappend ACQSERVERS nnaida31
    lappend ACQSERVERS nnaida32

}


namespace eval DataAcquisition {
    variable PROJECT AIDA
}

namespace eval AIDA {
      variable ModuleMenu; set ModuleMenu $::DataAcquisition::ACQSERVERS
      variable TSMaster; set TSMaster nnaida5
      variable FEE64 [first $ModuleMenu]
      variable ConfigBase; set ConfigBase [file join $env(MIDASBASE) config TclHttpd]
}

    Setting DataBaseRoot "/MIDAS@aidas/DB"
    package require DataBaseAccessServer

    package require MemSasServer

#    Install services for Run Control

   package require NetVarsServer 1.1
   package require SigTaskServer

namespace eval $::DataAcquisition::PROJECT {
    variable DBRootName [file join EXPERIMENTS AIDA]
    variable DBNodeBase 2012
}

  package require AIDARunControl


  Setting Option7Name "Project Home Page"
  Setting Option7URL  "http://npg.dl.ac.uk/NPG/Projects/Fair.html"

  Setting Option8Name "Server Software Home Page"
  Setting Option8URL  "http://npg.dl.ac.uk/MIDAS/download/WebServices.html"


Attachment 3: aidacommon
#!/bin/bash
#
    UM=`umask`
    umask 0
#

     cd /MIDAS/linux-ppc_4xx/drivers/spi/module
     ./load
     sleep 5

     cd /MIDAS/linux-ppc_4xx/drivers/xaida/module
     ./load
     sleep 5

     cd /MIDAS/linux-ppc_4xx/drivers/aidamem/module
     ./load
     sleep 5

   MIDAS_MEMSAS_PORT=0
   export MIDAS_MEMSAS_PORT

export PATH=/MIDAS/linux-ppc_4xx/bin:${PATH}
export LD_LIBRARY_PATH=/MIDAS/linux-ppc_4xx/lib:${LD_LIBRARY_PATH}

    /MIDAS/TclHttpd/linux-ppc_4xx/TclHttpd-server&
     sleep 10

     cd /MIDAS/linux-ppc_4xx/bin

#
#    define netints and access registers
#

    netint Output_BufferSize 64
    netint Format_Option 4
    netint Xfer_Option 3

    netint Xfer_NoBlock 0
    netint Xfer_Overlap 0
    netint Xfer_Priority 0

    netint DACQ_TxInit 1
    netint DACQ_StatsTime 5
    netint DACQ_PushEnable 60
    netint DACQ_FlushEnable 60

    cd /MIDAS/Data_Acq/bin/linux-ppc_4xx
#    ./ExecV1
    nice ./AidaExecV8
#
    umask $UM
#

Attachment 4: aidacommon.BAK-030516
#!/bin/bash
#
    UM=`umask`
    umask 0
#

     cd /MIDAS/linux-ppc_4xx/drivers/spi/module
     ./load
     sleep 5

     cd /MIDAS/linux-ppc_4xx/drivers/xaida/module
     ./load
     sleep 5

     cd /MIDAS/linux-ppc_4xx/drivers/aidamem/module
     ./load
     sleep 5

   MIDAS_MEMSAS_PORT=0
   export MIDAS_MEMSAS_PORT

export PATH=/MIDAS/linux-ppc_4xx/bin:${PATH}
export LD_LIBRARY_PATH=/MIDAS/linux-ppc_4xx/lib:${LD_LIBRARY_PATH}

    /MIDAS/TclHttpd/linux-ppc_4xx/TclHttpd-server&
     sleep 10

     cd /MIDAS/linux-ppc_4xx/bin

#
#    define netints and access registers
#

    netint Output_BufferSize 64
    netint Format_Option 4
    netint Xfer_Option 3

    netint Xfer_NoBlock 0
    netint Xfer_Overlap 0
    netint Xfer_Priority 0

    netint DACQ_TxInit 1
    netint DACQ_StatsTime 5
    netint DACQ_PushEnable 60
    netint DACQ_FlushEnable 60

    cd /MIDAS/Data_Acq/bin/linux-ppc_4xx
#    ./ExecV1
    nice ./AidaExecV7 xxx
#
    umask $UM
#
ELOG V3.1.4-unknown