AIDA GELINA BRIKEN nToF CRIB ISOLDE CIRCE nTOFCapture DESPEC DTAS EDI_PSA 179Ta CARME StellarModelling DCF K40
  AIDA, Page 8 of 46  ELOG logo
ID Date Authordown Subject
  269   Wed Jun 1 13:58:48 2016 TD - Reply PJCSWednesday 1 June 2016
> Check the Local Controls for the setting of the LMK3200 control rgister.
> If you recall from the problem with nnaida5 the value should be 0xB.
> If the clock still doesn't lock then maybe it's an HDMI cable problem like nnaida5.
> Since the other FEE64 are ok then it is likely to be just the MACB to nnaida23.

I attach SYNC stats for WAVE and AIDA - you will notice that most (but not all) FEE64s
produce WAVE SYNCS

Plus (load balanced) statistics for disc, good events
Attachment 1: 500.png
500.png
Attachment 2: 501.png
501.png
Attachment 3: 503.png
503.png
Attachment 4: 505.png
505.png
  303   Fri Jun 10 14:02:17 2016 TD (courtesy VFEP)[How to] Avoid Power-Cycling/Rebooting FEE64s
If you obtain the 'unable to connect' from one, or more, of the FEE64s try the
following procedure *before* power-cycling/rebooting all of the FEE64s. 

1) From the Firefox web browser (Workspace 2) close any tab related to the Merge program
   typically 'MERGE: Control', 'Merger Link Data Rates' and 'MRGE Statistics'

2) Restart the Merge program by selecting the 'MergeServer' icon on the task bar at the top
   of the display which the run the script /MIDAS/Merger/AIDA/Startup

   Restarting the Merge program in this way will ensure that all merge program components
   are removed and that the merge program starts with a timestamp of zero.

   [Attempts to just restart manually which fail to remove ALL of the link tasks will cause
    the data collection for those FEE64 links to an existing link task to fail (port already
    in use).

    It is also important that the Merge restarts with the time stamp at zero and with the link
    queues all empty  (which happens when the software is reloaded)]

3) From the Firefox web browser (Workspace 2) 'MERGE: Control' tab

   Select Reload

   The Merge state should now be 'Unknown'

   Select Configure & Setup

   Select GO

   This should immediately commence reading data from the links and sending merged data to the
   TapeServer if enabled.

   Select Toggle Merge Data Transfer State to toggle data transfer to the TapeServer 

   Select Toggle Merge Program Pause State to toggle input data to the Merge program

Based upon notes from VFEP (originally written for the IDS LyrTech system at CERN)
  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>" } }]
  365   Sat Oct 1 01:57:56 2016 TD & PJCSLatest MACB firmware - 16 April 2015
Attachment 1: macb_top_revB.jed
  293   Wed Jun 8 03:46:51 2016 TD & MLTapeServer compression disabled
CHnaged TapeServer configuration file to disable data compression

tapeserver options 6 -> tapeserver options 4

See http://npg.dl.ac.uk/MIDAS/download/tapeserver.html

aidas1> cat /MIDAS/TapeServer/Linux64/TS_configuration
#device configuration information
#    any line starting with a # is a comment and is ignored
stats  ./stats
#    devices available   -   list ends with a null line or line starting with a &
#    format       class_name     device_name    driver_task_path_name
#       class_name MUST be one of dlt, exabyte, scsitape, sink
#       driver_task_path_name normally is omitted
#dlt           /dev/nst0    ./driver
file          /dev/file/0  ./driver
sink          /dev/null/0  ./driver
&
#data link configuration information  - list end with a null line
#    format   link_task_path_name  
./linkTCP
&
#program options - list end with a null line
msg_reporting_level 0x0180fff8
#   use 0x0080fff8 to enable msg logging
msg_logging_level 0xfff8
tapeserver_options 4
#   use 0x0080fff8 to enable msg logging
#    default for following is 16Kbytes - both MUST be the same at present
data_buffer_size 64
tape_block_size 64
disc_file_size 2000
#
file_path_base /TapeData
&
#end of information

Merger ~600k items/s, TapeServer ~4500kb/s, driver process CPU ~1.3%

Tasks: 519 total,   2 running, 512 sleeping,   3 stopped,   2 zombie
Cpu(s):  0.5%us,  0.5%sy,  7.1%ni, 91.9%id,  0.0%wa,  0.0%hi,  0.0%si,  0.0%st
Mem:   8048160k total,  7877128k used,   171032k free,    54624k buffers
Swap: 18415608k total,   124036k used, 18291572k free,  6509416k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  COMMAND            
22565 npg       30  10  327m  13m  12m R 100.0  0.2 115:05.32 sort2b            
 6055 npg       22   2 2117m 718m 635m S 13.9  9.1   1:03.67 merge64.AD         
 4398 npg       20   0 1523m 317m  31m S  5.0  4.0  78:36.04 firefox            
 3795 root      20   0  248m  92m 8272 S  4.0  1.2  98:58.94 Xorg               
 4655 npg       20   0  402m  20m 8964 S  2.6  0.3  19:33.57 gnome-terminal     
 6091 npg       20   0 19676 1284 1100 S  1.3  0.0   0:07.01 driver             
 6088 npg       20   0 21592 6740 6544 S  0.7  0.1   0:03.07 master             
 6093 npg       20   0 17880 1260 1028 S  0.7  0.0   0:03.12 linkTCP            
 6486 npg       20   0 15304 1576  924 R  0.7  0.0   0:02.66 top                
18761 npg       20   0 15304 1572  916 S  0.7  0.0   1:29.13 top                
   69 root      20   0     0    0    0 S  0.3  0.0   0:35.68 events/2           
 3270 root      20   0     0    0    0 S  0.3  0.0   0:10.29 nfsd               
 4124 npg       20   0 1080m  33m  13m S  0.3  0.4   3:03.69 nautilus           
 5994 npg       20   0 2021m  49m  49m S  0.3  0.6   0:01.46 link64             
 5997 npg       20   0 2021m  49m  49m S  0.3  0.6   0:01.61 link64             
 5998 npg       20   0 2021m  49m  49m S  0.3  0.6   0:02.41 link64             
 6003 npg       20   0 2021m  49m  49m S  0.3  0.6   0:00.30 link64  
  104   Sat May 9 03:50:56 2015 TD & CGSaturday 9 May 2015
Gzip'd tar file of /MIDAS/DB - attachment 1
Scan of AIDA logbook - attachment 2

AIDA FEE64 power OFF
JUlabo FL11006 chiller OFF
USB ac mains control OFF
Mains power disconnected from ac mains network to AIDA.
2x RJ45 network cables from NetGear Gbit switches to AIDA
server aidas1 disconnected and rolled up.

AIDA withdrawn from in-beam position within EURICA.
AIDA stand, Julabo FL11006 chiller and ac mains transformer
moved downstream from EURICA. 

AIDA snout removed and DSSSD stack dis-assembled.
Attachment 1: MIDAS_DB_090515.tar.gz
Attachment 2: aida_may2015-0001.compressed.rotated.pdf
aida_may2015-0001.compressed.rotated.pdf aida_may2015-0001.compressed.rotated.pdf aida_may2015-0001.compressed.rotated.pdf aida_may2015-0001.compressed.rotated.pdf aida_may2015-0001.compressed.rotated.pdf aida_may2015-0001.compressed.rotated.pdf aida_may2015-0001.compressed.rotated.pdf aida_may2015-0001.compressed.rotated.pdf
  360   Wed Sep 28 06:40:40 2016 TD & CGWednesday 28 September
14.40 AIDA power up

      Julabo FL11006 set point +20 deg C

      DSSSD biases & leakage currents OK - see attachments 1 & 2

      System-wide checks OK *except* nnaida19 fails ASIC timestamp check (no change)

15.02 R1 (directory /TapeData/Sept2016) starts

      ASIC settings 2016Sep02-18.17.01

15.46 FEE temperatures OK - see attachment 3

      No merger error messages

      R1_6 ADC data synchronised

23.07 R6_119 ADC data synchronised
      FEE temperatures OK - see attachment 4
Attachment 1: 1.png
1.png
Attachment 2: 2.png
2.png
Attachment 3: 3.png
3.png
Attachment 4: 4.png
4.png
  361   Wed Sep 28 07:51:45 2016 TD & CGNew spectrum display software installed
Spectrum display software updated
    maximum number of galleries increased to 30
    layouts may be saved to, and restored from, files /tmp/LayOut<n>.mlf where <n> = 1..8

mv /MIDAS/TclHttpd/Html/Spectrum /MIDAS/TclHttpd/Html/Spectrum.BAK-29.0916
mv /MIDAS/TclHttpd/Html/Spectrum_new_22Aug /MIDAS/TclHttpd/Html/Spectrum

aidas1> ls -l /MIDAS/TclHttpd/Html/Spectrum
total 136
-rw-r--r--. 1 npg npgstaff 32620 Aug 22 20:08 analysis.tcl
-rw-r--r--. 1 npg npgstaff  2179 Aug 22 20:08 example.html
drwxr-sr-x. 2 npg npgstaff  4096 Aug 22 20:11 images
-rwxr-xr-x. 1 npg npgstaff  5851 Aug 22 20:08 show.tcl
-rw-r--r--. 1 npg npgstaff  1246 Aug 22 20:08 SP2.txt
-rw-r--r--. 1 npg npgstaff     0 Aug 22 20:08 SP3.txt
-rw-r--r--. 1 npg npgstaff     0 Aug 22 20:08 SP4.txt
-rw-r--r--. 1 npg npgstaff     0 Aug 22 20:08 SP5.txt
-rw-r--r--. 1 npg npgstaff  6631 Aug 22 20:08 Spectrum.js
-rw-r--r--. 1 npg npgstaff 44386 Aug 22 20:08 Spectrum.tcl
-rw-r--r--. 1 npg npgstaff 30765 Aug 22 20:08 Spectrum.tml

aidas1> ls -l /MIDAS/TclHttpd/Html/Spectrum.BAK-280916
total 152
-rw-r--r--. 1 npg npgstaff 29462 Feb  2  2016 analysis.tcl
drwxr-sr-x. 2 npg npgstaff  4096 Oct  9  2013 flot
-rw-r--r--. 1 npg npgstaff   214 Mar 15  2016 fort.12
-rw-r--r--. 1 npg npgstaff   678 Mar 15  2016 fort.8
-rw-r--r--. 1 npg npgstaff  1253 Feb  2  2016 Global.tcl
drwxr-sr-x. 2 npg npgstaff  4096 Oct  9  2013 images
-rw-r--r--. 1 npg npgstaff  2173 Feb  2  2016 options.html
-rwxr-xr-x. 1 npg npgstaff  5851 Feb  2  2016 show.tcl
-rw-r--r--. 1 npg npgstaff  1246 Feb  2  2016 SP2.txt
-rw-r--r--. 1 npg npgstaff     0 Feb  2  2016 SP3.txt
-rw-r--r--. 1 npg npgstaff     0 Feb  2  2016 SP4.txt
-rw-r--r--. 1 npg npgstaff     0 Feb  2  2016 SP5.txt
-rw-r--r--. 1 npg npgstaff  6438 Feb  2  2016 Spectrum.js
-rw-r--r--. 1 npg npgstaff 43204 Feb  2  2016 Spectrum.tcl
-rw-r--r--. 1 npg npgstaff 29496 Feb  2  2016 Spectrum.tml
  362   Thu Sep 29 03:20:38 2016 TD & CGThursday 29 September
11.20 R1 stops

      DSSSD bias/leakage current OK - see attachments 1-2
      FEE64 temperatures OK - see attachment 3

      System-wide checks OK *except* nnaida19 fails ASIC timestamp check (no change)

      No merger error messages - see attachment 4

      AIDA SYNC, PAUSE, RESUME, Correlation L, SYNC time warp, Good Events, AIDA disc, nnaida6, nnaida5,
nnaida19 & nnaida20 statistics - see attachments 5-15

      Analysis of R1_304 - ADC data synchronised

aidas1> ./analyser2 /TapeData/Sept2016/R1_304
 *** GREAT format 3.2.0 analyser - TD - May 2014
 *** ERROR: READ I/O error:       5002
                   blocks:      28207
          ADC data format:  105059677 (  495121.2 Hz)
        Other data format:  125077092 (  589458.4 Hz)
 Sample trace data format:          0 (       0.0 Hz)
         Undefined format:          0 (       0.0 Hz)
   Other data format type:      PAUSE:        143 (       0.7 Hz)
                               RESUME:        143 (       0.7 Hz)
                              SYNC100:    1940061 (    9143.0 Hz)
                           FEE64 disc:  123135099 (  580306.3 Hz)
                             MBS info:       1646 (       7.8 Hz)
                           Other info:          0 (       0.0 Hz)

   ADC data range bit set:        543 (       2.6 Hz)

                Timewarps:        ADC:          0 (       0.0 Hz)
                                PAUSE:          0 (       0.0 Hz)
                               RESUME:          0 (       0.0 Hz)
                              SYNC100:          0 (       0.0 Hz)
                           FEE64 disc:          0 (       0.0 Hz)
                             MBS info:          0 (       0.0 Hz)
                            Undefined:          0 (       0.0 Hz)
                         Sample trace:          0 (       0.0 Hz)

 Timestamp elapsed time:      212.190 s
 FEE module #:   1 elapsed dead time       0.000 s
 FEE module #:   2 elapsed dead time       0.906 s
 FEE module #:   3 elapsed dead time       0.000 s
 FEE module #:   4 elapsed dead time       0.000 s
 FEE module #:   5 elapsed dead time       3.664 s
 FEE module #:   6 elapsed dead time       0.681 s
 FEE module #:   7 elapsed dead time       0.000 s
 FEE module #:   8 elapsed dead time       0.000 s
 FEE module #:   9 elapsed dead time       0.019 s
 FEE module #:  10 elapsed dead time       0.000 s
 FEE module #:  11 elapsed dead time       0.000 s
 FEE module #:  12 elapsed dead time       0.000 s
 FEE module #:  13 elapsed dead time       0.000 s
 FEE module #:  14 elapsed dead time       0.003 s
 FEE module #:  15 elapsed dead time       0.000 s
 FEE module #:  16 elapsed dead time       0.000 s
 FEE module #:  17 elapsed dead time       0.144 s
 FEE module #:  18 elapsed dead time       0.000 s
 FEE module #:  19 elapsed dead time       0.753 s
 FEE module #:  20 elapsed dead time       0.000 s
 FEE module #:  21 elapsed dead time       0.000 s
 FEE module #:  22 elapsed dead time       0.108 s
 FEE module #:  23 elapsed dead time       0.000 s
 FEE module #:  24 elapsed dead time       0.000 s
 FEE module #:  25 elapsed dead time       0.000 s
 FEE module #:  26 elapsed dead time       0.000 s
 FEE module #:  27 elapsed dead time       0.000 s
 FEE module #:  28 elapsed dead time       0.000 s
 FEE module #:  29 elapsed dead time       0.000 s
 FEE module #:  30 elapsed dead time       0.000 s
 FEE module #:  31 elapsed dead time       0.000 s
 FEE module #:  32 elapsed dead time       0.000 s

 *** Program elapsed time:    8.492s ( 3321.523 blocks/s, 207.595 Mb/s)

11.32 DSSSD Bias off
      FEE64 power off

17.00 nnaida1/nnaida2 & nnaida9/nnaida10
      AIDA adaptor PCB rev C -> AIDA adaptor PCB rev D

      Adaptor PCB damaged during re-install of AIDA DSSSD mounting bracket
      to adjust to vertical.

      nnaida13/nnaida14
      AIDA adaptor PCB rev D -> AIDA adaptor PCB rev D
Attachment 1: 1.png
1.png
Attachment 2: 2.png
2.png
Attachment 3: 3.png
3.png
Attachment 4: 4.png
4.png
Attachment 5: 5.png
5.png
Attachment 6: 6.png
6.png
Attachment 7: 7.png
7.png
Attachment 8: 9.png
9.png
Attachment 9: 10.png
10.png
Attachment 10: 11.png
11.png
Attachment 11: 12.png
12.png
Attachment 12: 13.png
13.png
Attachment 13: 14.png
14.png
Attachment 14: 15.png
15.png
Attachment 15: 16.png
16.png
  378   Fri Oct 7 02:29:19 2016 TD & CGFriday 7 October
10.29 DAQ left running overnight
      Histograms only - no data transfer to Merger & TapeServer

      DSSSD biases & leakage currents OK - see attachments 1 & 2
      FEE64 temperatures OK - see attachment 3

      DAQ run control OK - see attachment 4

      Statistics - see attachments 5-16
      
      N.B. some FEE64s are producing SYNCs, some not, in particular nnaida6 is not

      System-wide tests - see attachments 17-22

11.31 DAQ recovered with STOP-GO (no data transfer)
      AIDA SYNCs OK for all FEE64s

22.46 DAQ still running OK

      Power down in preparation for tomorrow's planned site-wide power outage 
Attachment 1: 1.png
1.png
Attachment 2: 2.png
2.png
Attachment 3: 3.png
3.png
Attachment 4: 4.png
4.png
Attachment 5: 5.png
5.png
Attachment 6: 6.png
6.png
Attachment 7: 7.png
7.png
Attachment 8: 9.png
9.png
Attachment 9: 10.png
10.png
Attachment 10: 11.png
11.png
Attachment 11: 12.png
12.png
Attachment 12: 13.png
13.png
Attachment 13: 14.png
14.png
Attachment 14: 15.png
15.png
Attachment 15: 16.png
16.png
Attachment 16: 18.png
18.png
Attachment 17: 20.png
20.png
Attachment 18: 21.png
21.png
Attachment 19: 22.png
22.png
Attachment 20: 23.png
23.png
Attachment 21: 24.png
24.png
Attachment 22: 25.png
25.png
  379   Fri Oct 7 02:43:47 2016 TD & CGAnalysis of Sept2016/R13_47
Analysis of R13_47 - the data file that was being written when DAQ stalled
yesterday evening - see https://elog.ph.ed.ac.uk/AIDA/371

aidas1> ./analyser2 /TapeData/Sept2016/R13_46
 *** GREAT format 3.2.0 analyser - TD - May 2014
 *** ERROR: READ I/O error:       5002
                   blocks:      32000
          ADC data format:  145759250 (  544585.9 Hz)
        Other data format:  115328750 (  430891.4 Hz)
 Sample trace data format:          0 (       0.0 Hz)
         Undefined format:          0 (       0.0 Hz)
   Other data format type:      PAUSE:         74 (       0.3 Hz)
                               RESUME:         74 (       0.3 Hz)
                              SYNC100:    2449126 (    9150.4 Hz)
                           FEE64 disc:  112871466 (  421710.5 Hz)
                             MBS info:       8010 (      29.9 Hz)
                           Other info:          0 (       0.0 Hz)

   ADC data range bit set:        382 (       1.4 Hz)

                Timewarps:        ADC:          0 (       0.0 Hz)
                                PAUSE:          0 (       0.0 Hz)
                               RESUME:          0 (       0.0 Hz)
                              SYNC100:          0 (       0.0 Hz)
                           FEE64 disc:          0 (       0.0 Hz)
                             MBS info:          0 (       0.0 Hz)
                            Undefined:          0 (       0.0 Hz)
                         Sample trace:          0 (       0.0 Hz)

 Timestamp elapsed time:      267.652 s
 FEE module #:   1 elapsed dead time       0.000 s
 FEE module #:   2 elapsed dead time       0.824 s
 FEE module #:   3 elapsed dead time       0.000 s
 FEE module #:   4 elapsed dead time       0.000 s
 FEE module #:   5 elapsed dead time       0.275 s
 FEE module #:   6 elapsed dead time       0.488 s
 FEE module #:   7 elapsed dead time       0.000 s
 FEE module #:   8 elapsed dead time       0.000 s
 FEE module #:   9 elapsed dead time       0.017 s
 FEE module #:  10 elapsed dead time       0.000 s
 FEE module #:  11 elapsed dead time       0.000 s
 FEE module #:  12 elapsed dead time       0.000 s
 FEE module #:  13 elapsed dead time       0.000 s
 FEE module #:  14 elapsed dead time       0.023 s
 FEE module #:  15 elapsed dead time       0.000 s
 FEE module #:  16 elapsed dead time       0.000 s
 FEE module #:  17 elapsed dead time       0.012 s
 FEE module #:  18 elapsed dead time       0.000 s
 FEE module #:  19 elapsed dead time       0.912 s
 FEE module #:  20 elapsed dead time       0.000 s
 FEE module #:  21 elapsed dead time       0.000 s
 FEE module #:  22 elapsed dead time       0.000 s
 FEE module #:  23 elapsed dead time       0.000 s
 FEE module #:  24 elapsed dead time       0.000 s
 FEE module #:  25 elapsed dead time       0.000 s
 FEE module #:  26 elapsed dead time       0.000 s
 FEE module #:  27 elapsed dead time       0.000 s
 FEE module #:  28 elapsed dead time       0.000 s
 FEE module #:  29 elapsed dead time       0.000 s
 FEE module #:  30 elapsed dead time       0.000 s
 FEE module #:  31 elapsed dead time       0.000 s
 FEE module #:  32 elapsed dead time       0.000 s

 *** Program elapsed time:   17.016s ( 1880.624 blocks/s, 117.539 Mb/s)
aidas1> ./analyser2 /TapeData/Sept2016/R13_47
 *** GREAT format 3.2.0 analyser - TD - May 2014
 *** ERROR: READ I/O error:       5002
                   blocks:      11864
          ADC data format:   54019518 (  544839.2 Hz)
        Other data format:   42776197 (  431439.3 Hz)
 Sample trace data format:          0 (       0.0 Hz)
         Undefined format:          0 (       0.0 Hz)
   Other data format type:      PAUSE:         29 (       0.3 Hz)
                               RESUME:         29 (       0.3 Hz)
                              SYNC100:     907301 (    9151.0 Hz)
                           FEE64 disc:   41865866 (  422257.8 Hz)
                             MBS info:       2972 (      30.0 Hz)
                           Other info:          0 (       0.0 Hz)

   ADC data range bit set:        135 (       1.4 Hz)

                Timewarps:        ADC:          0 (       0.0 Hz)
                                PAUSE:          0 (       0.0 Hz)
                               RESUME:          0 (       0.0 Hz)
                              SYNC100:          0 (       0.0 Hz)
                           FEE64 disc:          0 (       0.0 Hz)
                             MBS info:          0 (       0.0 Hz)
                            Undefined:          0 (       0.0 Hz)
                         Sample trace:          0 (       0.0 Hz)

 Timestamp elapsed time:       99.148 s
 FEE module #:   1 elapsed dead time       0.000 s
 FEE module #:   2 elapsed dead time       0.179 s
 FEE module #:   3 elapsed dead time       0.000 s
 FEE module #:   4 elapsed dead time       0.000 s
 FEE module #:   5 elapsed dead time       0.199 s
 FEE module #:   6 elapsed dead time       0.100 s
 FEE module #:   7 elapsed dead time       0.000 s
 FEE module #:   8 elapsed dead time       0.000 s
 FEE module #:   9 elapsed dead time       0.005 s
 FEE module #:  10 elapsed dead time       0.000 s
 FEE module #:  11 elapsed dead time       0.000 s
 FEE module #:  12 elapsed dead time       0.000 s
 FEE module #:  13 elapsed dead time       0.000 s
 FEE module #:  14 elapsed dead time       0.003 s
 FEE module #:  15 elapsed dead time       0.000 s
 FEE module #:  16 elapsed dead time       0.000 s
 FEE module #:  17 elapsed dead time       0.021 s
 FEE module #:  18 elapsed dead time       0.000 s
 FEE module #:  19 elapsed dead time       0.311 s
 FEE module #:  20 elapsed dead time       0.000 s
 FEE module #:  21 elapsed dead time       0.000 s
 FEE module #:  22 elapsed dead time       0.000 s
 FEE module #:  23 elapsed dead time       0.000 s
 FEE module #:  24 elapsed dead time       0.000 s
 FEE module #:  25 elapsed dead time       0.000 s
 FEE module #:  26 elapsed dead time       0.000 s
 FEE module #:  27 elapsed dead time       0.000 s
 FEE module #:  28 elapsed dead time       0.000 s
 FEE module #:  29 elapsed dead time       0.000 s
 FEE module #:  30 elapsed dead time       0.000 s
 FEE module #:  31 elapsed dead time       0.000 s
 FEE module #:  32 elapsed dead time       0.000 s

 *** Program elapsed time:    6.238s ( 1901.806 blocks/s, 118.863 Mb/s)

Final SYNCs of R13_47 

aidas1. ./analyser2 v /TapeData/Sept2016/R13_47 | grep SYNC
 :
 :
 ***   SYNC100 timestamp: block: 11864 ptr:  2151 data: 0x81401340 module:  1 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2153 data: 0x82401340 module:  2 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2155 data: 0x83401340 module:  3 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2157 data: 0x84401340 module:  4 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2159 data: 0x85401340 module:  5 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2161 data: 0x86401340 module:  6 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2163 data: 0x87401340 module:  7 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2165 data: 0x88401340 module:  8 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2167 data: 0x89401340 module:  9 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2169 data: 0x8A401340 module: 10 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2171 data: 0x8B401340 module: 11 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2173 data: 0x8C401340 module: 12 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2175 data: 0x8D401340 module: 13 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2177 data: 0x8E401340 module: 14 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2179 data: 0x8F401340 module: 15 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2181 data: 0x90401340 module: 16 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2183 data: 0x91401340 module: 17 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2185 data: 0x92401340 module: 18 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2187 data: 0x93401340 module: 19 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2189 data: 0x94401340 module: 20 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2191 data: 0x95401340 module: 21 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2193 data: 0x96401340 module: 22 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2195 data: 0x97401340 module: 23 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  2197 data: 0x98401340 module: 24 information type:  4 information
field: 0x00001340 ts: 0x000001340B4800A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6807 data: 0x81401340 module:  1 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6809 data: 0x82401340 module:  2 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6811 data: 0x83401340 module:  3 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6813 data: 0x84401340 module:  4 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6815 data: 0x85401340 module:  5 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6817 data: 0x86401340 module:  6 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6819 data: 0x87401340 module:  7 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6821 data: 0x88401340 module:  8 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6823 data: 0x89401340 module:  9 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6825 data: 0x8A401340 module: 10 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6827 data: 0x8B401340 module: 11 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6829 data: 0x8C401340 module: 12 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6831 data: 0x8D401340 module: 13 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6833 data: 0x8E401340 module: 14 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6835 data: 0x8F401340 module: 15 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6837 data: 0x90401340 module: 16 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6839 data: 0x91401340 module: 17 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6841 data: 0x92401340 module: 18 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6843 data: 0x93401340 module: 19 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6845 data: 0x94401340 module: 20 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6847 data: 0x95401340 module: 21 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6849 data: 0x96401340 module: 22 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6851 data: 0x97401340 module: 23 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0
 ***   SYNC100 timestamp: block: 11864 ptr:  6853 data: 0x98401340 module: 24 information type:  4 information
field: 0x00001340 ts: 0x000001340B4C00A0

Analysis of the end of file R13_47 - see attachment 1

Offline analysis of R13_3 and R13_47 shows AIDA ADC data synchronised
Attachment 1: Unsaved_Document_1
 ***            ADC data: block: 11864 ptr:  9981 data: 0xC4C78004 module: 19 fail: 0 range: 0 id:  1223 channel:  7 adc: 32772  ts: 0x000001340B4E82BF
 ***            ADC data: block: 11864 ptr:  9983 data: 0xC4FD7FFE module: 19 fail: 0 range: 0 id:  1277 channel: 61 adc: 32766  ts: 0x000001340B4E82BF
 ***            ADC data: block: 11864 ptr:  9985 data: 0xC27D7CF8 module:  9 fail: 0 range: 0 id:   637 channel: 61 adc: 31992  ts: 0x000001340B4E8321
 *** FEE64 discriminator: block: 11864 ptr:  9987 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4E8326
 *** FEE64 discriminator: block: 11864 ptr:  9989 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4E8437
 *** FEE64 discriminator: block: 11864 ptr:  9991 data: 0x91640080 module: 17 information type:  6 information field: 0x00040080 ts: 0x000001340B4E8442
 *** FEE64 discriminator: block: 11864 ptr:  9993 data: 0x8A640080 module: 10 information type:  6 information field: 0x00040080 ts: 0x000001340B4E8446
 ***            ADC data: block: 11864 ptr:  9995 data: 0xC605811D module: 24 fail: 0 range: 0 id:  1541 channel:  5 adc: 33053  ts: 0x000001340B4E85A5
 ***            ADC data: block: 11864 ptr:  9997 data: 0xC3BA7E40 module: 14 fail: 0 range: 0 id:   954 channel: 58 adc: 32320  ts: 0x000001340B4E85C5
 ***            ADC data: block: 11864 ptr:  9999 data: 0xC4C181C6 module: 19 fail: 0 range: 0 id:  1217 channel:  1 adc: 33222  ts: 0x000001340B4E86A7
 ***            ADC data: block: 11864 ptr: 10001 data: 0xC4F27FCF module: 19 fail: 0 range: 0 id:  1266 channel: 50 adc: 32719  ts: 0x000001340B4E86A7
 ***            ADC data: block: 11864 ptr: 10003 data: 0xC377778E module: 13 fail: 0 range: 0 id:   887 channel: 55 adc: 30606  ts: 0x000001340B4E86C1
 *** FEE64 discriminator: block: 11864 ptr: 10005 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4E8709
 *** FEE64 discriminator: block: 11864 ptr: 10007 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4E870A
 ***            ADC data: block: 11864 ptr: 10009 data: 0xC4D4807D module: 19 fail: 0 range: 0 id:  1236 channel: 20 adc: 32893  ts: 0x000001340B4E876F
 *** FEE64 discriminator: block: 11864 ptr: 10011 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4E881C
 *** FEE64 discriminator: block: 11864 ptr: 10013 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4E881C
 ***            ADC data: block: 11864 ptr: 10015 data: 0xC3B77D16 module: 14 fail: 0 range: 0 id:   951 channel: 55 adc: 32022  ts: 0x000001340B4E881D
 ***            ADC data: block: 11864 ptr: 10017 data: 0xC4378219 module: 16 fail: 0 range: 0 id:  1079 channel: 55 adc: 33305  ts: 0x000001340B4E881F
 *** FEE64 discriminator: block: 11864 ptr: 10019 data: 0x91640080 module: 17 information type:  6 information field: 0x00040080 ts: 0x000001340B4E8825
 *** FEE64 discriminator: block: 11864 ptr: 10021 data: 0x8A640080 module: 10 information type:  6 information field: 0x00040080 ts: 0x000001340B4E8829
 *** FEE64 discriminator: block: 11864 ptr: 10023 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4E882C
 ***            ADC data: block: 11864 ptr: 10025 data: 0xC27A7E47 module:  9 fail: 0 range: 0 id:   634 channel: 58 adc: 32327  ts: 0x000001340B4E8A29
 *** FEE64 discriminator: block: 11864 ptr: 10027 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4E8A3A
 ***            ADC data: block: 11864 ptr: 10029 data: 0xC4F88142 module: 19 fail: 0 range: 0 id:  1272 channel: 56 adc: 33090  ts: 0x000001340B4E8A8F
 ***            ADC data: block: 11864 ptr: 10031 data: 0xC2B77D1E module: 10 fail: 0 range: 0 id:   695 channel: 55 adc: 32030  ts: 0x000001340B4E8AC5
 *** FEE64 discriminator: block: 11864 ptr: 10033 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4E8AEC
 *** FEE64 discriminator: block: 11864 ptr: 10035 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4E8AEE
 ***            ADC data: block: 11864 ptr: 10037 data: 0xC50180FD module: 20 fail: 0 range: 0 id:  1281 channel:  1 adc: 33021  ts: 0x000001340B4E8B13
 ***            ADC data: block: 11864 ptr: 10039 data: 0xC4E3808D module: 19 fail: 0 range: 0 id:  1251 channel: 35 adc: 32909  ts: 0x000001340B4E8B57
 *** FEE64 discriminator: block: 11864 ptr: 10041 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4E8C05
 ***            ADC data: block: 11864 ptr: 10043 data: 0xC4E680AE module: 19 fail: 0 range: 0 id:  1254 channel: 38 adc: 32942  ts: 0x000001340B4E8DAF
 ***            ADC data: block: 11864 ptr: 10045 data: 0xC4BA7EF3 module: 18 fail: 0 range: 0 id:  1210 channel: 58 adc: 32499  ts: 0x000001340B4E8DC3
 ***            ADC data: block: 11864 ptr: 10047 data: 0xC37A7E39 module: 13 fail: 0 range: 0 id:   890 channel: 58 adc: 32313  ts: 0x000001340B4E8DC9
 ***            ADC data: block: 11864 ptr: 10049 data: 0xC0C0841E module:  3 fail: 0 range: 0 id:   192 channel:  0 adc: 33822  ts: 0x000001340B4E8DC9
 ***            ADC data: block: 11864 ptr: 10051 data: 0xC0B77531 module:  2 fail: 0 range: 0 id:   183 channel: 55 adc: 30001  ts: 0x000001340B4E8DDB
 ***            ADC data: block: 11864 ptr: 10053 data: 0xC4EE7FC9 module: 19 fail: 0 range: 0 id:  1262 channel: 46 adc: 32713  ts: 0x000001340B4E8E77
 ***            ADC data: block: 11864 ptr: 10055 data: 0xC4FB809B module: 19 fail: 0 range: 0 id:  1275 channel: 59 adc: 32923  ts: 0x000001340B4E8E77
 ***            ADC data: block: 11864 ptr: 10057 data: 0xC17777DF module:  5 fail: 0 range: 0 id:   375 channel: 55 adc: 30687  ts: 0x000001340B4E8EC3
 ***            ADC data: block: 11864 ptr: 10059 data: 0xC4FF805F module: 19 fail: 0 range: 0 id:  1279 channel: 63 adc: 32863  ts: 0x000001340B4E8F3F
 ***            ADC data: block: 11864 ptr: 10061 data: 0xC1B764B3 module:  6 fail: 0 range: 0 id:   439 channel: 55 adc: 25779  ts: 0x000001340B4E8F8D
 *** FEE64 discriminator: block: 11864 ptr: 10063 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4E8FE1
 *** FEE64 discriminator: block: 11864 ptr: 10065 data: 0x8E640080 module: 14 information type:  6 information field: 0x00040080 ts: 0x000001340B4E8FEA
 *** FEE64 discriminator: block: 11864 ptr: 10067 data: 0x91640080 module: 17 information type:  6 information field: 0x00040080 ts: 0x000001340B4E8FEB
 *** FEE64 discriminator: block: 11864 ptr: 10069 data: 0x8D640080 module: 13 information type:  6 information field: 0x00040080 ts: 0x000001340B4E8FEE
 ***            ADC data: block: 11864 ptr: 10071 data: 0xC4018256 module: 16 fail: 0 range: 0 id:  1025 channel:  1 adc: 33366  ts: 0x000001340B4E90B7
 ***            ADC data: block: 11864 ptr: 10073 data: 0xC3C180E9 module: 15 fail: 0 range: 0 id:   961 channel:  1 adc: 33001  ts: 0x000001340B4E912D
 ***            ADC data: block: 11864 ptr: 10075 data: 0xC27D7E52 module:  9 fail: 0 range: 0 id:   637 channel: 61 adc: 32338  ts: 0x000001340B4E9131
 ***            ADC data: block: 11864 ptr: 10077 data: 0xC4D9816C module: 19 fail: 0 range: 0 id:  1241 channel: 25 adc: 33132  ts: 0x000001340B4E9197
 *** FEE64 discriminator: block: 11864 ptr: 10079 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4E91BB
 *** FEE64 discriminator: block: 11864 ptr: 10081 data: 0x8E640080 module: 14 information type:  6 information field: 0x00040080 ts: 0x000001340B4E91BD
 ***            ADC data: block: 11864 ptr: 10083 data: 0xC47A7EAF module: 17 fail: 0 range: 0 id:  1146 channel: 58 adc: 32431  ts: 0x000001340B4E91D9
 *** FEE64 discriminator: block: 11864 ptr: 10085 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4E92AD
 *** FEE64 discriminator: block: 11864 ptr: 10087 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4E93C0
 *** FEE64 discriminator: block: 11864 ptr: 10089 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4E93C0
 *** FEE64 discriminator: block: 11864 ptr: 10091 data: 0x8E640080 module: 14 information type:  6 information field: 0x00040080 ts: 0x000001340B4E93CF
 *** FEE64 discriminator: block: 11864 ptr: 10093 data: 0x91640080 module: 17 information type:  6 information field: 0x00040080 ts: 0x000001340B4E93CF
 ***            ADC data: block: 11864 ptr: 10095 data: 0xC605813B module: 24 fail: 0 range: 0 id:  1541 channel:  5 adc: 33083  ts: 0x000001340B4E947D
 ***            ADC data: block: 11864 ptr: 10097 data: 0xC3F78274 module: 15 fail: 0 range: 0 id:  1015 channel: 55 adc: 33396  ts: 0x000001340B4E9515
 ***            ADC data: block: 11864 ptr: 10099 data: 0xC3777E24 module: 13 fail: 0 range: 0 id:   887 channel: 55 adc: 32292  ts: 0x000001340B4E9661
 *** FEE64 discriminator: block: 11864 ptr: 10101 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4E9691
 *** FEE64 discriminator: block: 11864 ptr: 10103 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4E9691
 ***            ADC data: block: 11864 ptr: 10105 data: 0xC3B77A2F module: 14 fail: 0 range: 0 id:   951 channel: 55 adc: 31279  ts: 0x000001340B4E96F5
 ***            ADC data: block: 11864 ptr: 10107 data: 0xC5F78231 module: 23 fail: 0 range: 0 id:  1527 channel: 55 adc: 33329  ts: 0x000001340B4E9765
 *** FEE64 discriminator: block: 11864 ptr: 10109 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4E97A2
 *** FEE64 discriminator: block: 11864 ptr: 10111 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4E97A2
 ***            ADC data: block: 11864 ptr: 10113 data: 0xC27A7DB7 module:  9 fail: 0 range: 0 id:   634 channel: 58 adc: 32183  ts: 0x000001340B4E9839
 ***            ADC data: block: 11864 ptr: 10115 data: 0xC4B77DCC module: 18 fail: 0 range: 0 id:  1207 channel: 55 adc: 32204  ts: 0x000001340B4E997B
 ***            ADC data: block: 11864 ptr: 10117 data: 0xC4C28057 module: 19 fail: 0 range: 0 id:  1218 channel:  2 adc: 32855  ts: 0x000001340B4E9A2F
 ***            ADC data: block: 11864 ptr: 10119 data: 0xC4D48049 module: 19 fail: 0 range: 0 id:  1236 channel: 20 adc: 32841  ts: 0x000001340B4E9A2F
 ***            ADC data: block: 11864 ptr: 10121 data: 0xC4E3807D module: 19 fail: 0 range: 0 id:  1251 channel: 35 adc: 32893  ts: 0x000001340B4E9A2F
 *** FEE64 discriminator: block: 11864 ptr: 10123 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4E9A74
 *** FEE64 discriminator: block: 11864 ptr: 10125 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4E9A74
 ***            ADC data: block: 11864 ptr: 10127 data: 0xC4C48022 module: 19 fail: 0 range: 0 id:  1220 channel:  4 adc: 32802  ts: 0x000001340B4E9AF7
 *** FEE64 discriminator: block: 11864 ptr: 10129 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4E9B86
 *** FEE64 discriminator: block: 11864 ptr: 10131 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4E9B86
 ***            ADC data: block: 11864 ptr: 10133 data: 0xC0C083D2 module:  3 fail: 0 range: 0 id:   192 channel:  0 adc: 33746  ts: 0x000001340B4E9CA1
 ***            ADC data: block: 11864 ptr: 10135 data: 0xC5018086 module: 20 fail: 0 range: 0 id:  1281 channel:  1 adc: 32902  ts: 0x000001340B4E9D0B
 ***            ADC data: block: 11864 ptr: 10137 data: 0xC4CF8189 module: 19 fail: 0 range: 0 id:  1231 channel: 15 adc: 33161  ts: 0x000001340B4E9D4F
 ***            ADC data: block: 11864 ptr: 10139 data: 0xC4BA7EF0 module: 18 fail: 0 range: 0 id:  1210 channel: 58 adc: 32496  ts: 0x000001340B4E9D63
 ***            ADC data: block: 11864 ptr: 10141 data: 0xC4F18085 module: 19 fail: 0 range: 0 id:  1265 channel: 49 adc: 32901  ts: 0x000001340B4E9E17
 *** FEE64 discriminator: block: 11864 ptr: 10143 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4E9E55
 *** FEE64 discriminator: block: 11864 ptr: 10145 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4E9E55
 ***            ADC data: block: 11864 ptr: 10147 data: 0xC1B76EAA module:  6 fail: 0 range: 0 id:   439 channel: 55 adc: 28330  ts: 0x000001340B4E9E65
 ***            ADC data: block: 11864 ptr: 10149 data: 0xC4FF8060 module: 19 fail: 0 range: 0 id:  1279 channel: 63 adc: 32864  ts: 0x000001340B4E9EDF
 *** FEE64 discriminator: block: 11864 ptr: 10151 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4E9F67
 *** FEE64 discriminator: block: 11864 ptr: 10153 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4E9F68
 *** FEE64 discriminator: block: 11864 ptr: 10155 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4E9F68
 ***            ADC data: block: 11864 ptr: 10157 data: 0xC3C1805A module: 15 fail: 0 range: 0 id:   961 channel:  1 adc: 32858  ts: 0x000001340B4EA005
 *** FEE64 discriminator: block: 11864 ptr: 10159 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EA23A
 *** FEE64 discriminator: block: 11864 ptr: 10161 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EA23C
 ***            ADC data: block: 11864 ptr: 10163 data: 0xC47A7F0D module: 17 fail: 0 range: 0 id:  1146 channel: 58 adc: 32525  ts: 0x000001340B4EA241
 ***            ADC data: block: 11864 ptr: 10165 data: 0xC17A7C7E module:  5 fail: 0 range: 0 id:   378 channel: 58 adc: 31870  ts: 0x000001340B4EA24B
 *** FEE64 discriminator: block: 11864 ptr: 10167 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EA28A
 *** FEE64 discriminator: block: 11864 ptr: 10169 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EA348
 *** FEE64 discriminator: block: 11864 ptr: 10171 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EA34B
 *** FEE64 discriminator: block: 11864 ptr: 10173 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EA34C
 ***            ADC data: block: 11864 ptr: 10175 data: 0xC1BA7BCA module:  6 fail: 0 range: 0 id:   442 channel: 58 adc: 31690  ts: 0x000001340B4EA3DD
 ***            ADC data: block: 11864 ptr: 10177 data: 0xC3F78310 module: 15 fail: 0 range: 0 id:  1015 channel: 55 adc: 33552  ts: 0x000001340B4EA3ED
 ***            ADC data: block: 11864 ptr: 10179 data: 0xC401821C module: 16 fail: 0 range: 0 id:  1025 channel:  1 adc: 33308  ts: 0x000001340B4EA43F
 *** FEE64 discriminator: block: 11864 ptr: 10181 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EA448
 *** FEE64 discriminator: block: 11864 ptr: 10183 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EA449
 *** FEE64 discriminator: block: 11864 ptr: 10185 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EA44A
 ***            ADC data: block: 11864 ptr: 10187 data: 0xC4F0808C module: 19 fail: 0 range: 0 id:  1264 channel: 48 adc: 32908  ts: 0x000001340B4EA457
 *** FEE64 discriminator: block: 11864 ptr: 10189 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EA472
 ***            ADC data: block: 11864 ptr: 10191 data: 0xC3777CBD module: 13 fail: 0 range: 0 id:   887 channel: 55 adc: 31933  ts: 0x000001340B4EA539
 ***            ADC data: block: 11864 ptr: 10193 data: 0xC2777404 module:  9 fail: 0 range: 0 id:   631 channel: 55 adc: 29700  ts: 0x000001340B4EA581
 ***            ADC data: block: 11864 ptr: 10195 data: 0xC3B777BC module: 14 fail: 0 range: 0 id:   951 channel: 55 adc: 30652  ts: 0x000001340B4EA5CD
 *** FEE64 discriminator: block: 11864 ptr: 10197 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EA617
 *** FEE64 discriminator: block: 11864 ptr: 10199 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EA61C
 *** FEE64 discriminator: block: 11864 ptr: 10201 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EA61D
 ***            ADC data: block: 11864 ptr: 10203 data: 0xC1B67ECC module:  6 fail: 0 range: 0 id:   438 channel: 54 adc: 32460  ts: 0x000001340B4EA635
 ***            ADC data: block: 11864 ptr: 10205 data: 0xC5F78152 module: 23 fail: 0 range: 0 id:  1527 channel: 55 adc: 33106  ts: 0x000001340B4EA63D
 ***            ADC data: block: 11864 ptr: 10207 data: 0xC605811F module: 24 fail: 0 range: 0 id:  1541 channel:  5 adc: 33055  ts: 0x000001340B4EA675
 *** FEE64 discriminator: block: 11864 ptr: 10209 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EA72A
 *** FEE64 discriminator: block: 11864 ptr: 10211 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EA72D
 *** FEE64 discriminator: block: 11864 ptr: 10213 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EA72E
 *** FEE64 discriminator: block: 11864 ptr: 10215 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EA82C
 ***            ADC data: block: 11864 ptr: 10217 data: 0xC4C4800D module: 19 fail: 0 range: 0 id:  1220 channel:  4 adc: 32781  ts: 0x000001340B4EA907
 ***            ADC data: block: 11864 ptr: 10219 data: 0xC0B778A4 module:  2 fail: 0 range: 0 id:   183 channel: 55 adc: 30884  ts: 0x000001340B4EA933
 ***            ADC data: block: 11864 ptr: 10221 data: 0xC1777A96 module:  5 fail: 0 range: 0 id:   375 channel: 55 adc: 31382  ts: 0x000001340B4EA953
 *** FEE64 discriminator: block: 11864 ptr: 10223 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EAB0C
 *** FEE64 discriminator: block: 11864 ptr: 10225 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EAB0D
 *** FEE64 discriminator: block: 11864 ptr: 10227 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EAB0E
 ***            ADC data: block: 11864 ptr: 10229 data: 0xC0C083E8 module:  3 fail: 0 range: 0 id:   192 channel:  0 adc: 33768  ts: 0x000001340B4EAB79
 *** FEE64 discriminator: block: 11864 ptr: 10231 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EABED
 ***            ADC data: block: 11864 ptr: 10233 data: 0xC4F18090 module: 19 fail: 0 range: 0 id:  1265 channel: 49 adc: 32912  ts: 0x000001340B4EACEF
 ***            ADC data: block: 11864 ptr: 10235 data: 0xC1B77DFE module:  6 fail: 0 range: 0 id:   439 channel: 55 adc: 32254  ts: 0x000001340B4EAD3D
 *** FEE64 discriminator: block: 11864 ptr: 10237 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EADCF
 *** FEE64 discriminator: block: 11864 ptr: 10239 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EADD0
 *** FEE64 discriminator: block: 11864 ptr: 10241 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EADE1
 *** FEE64 discriminator: block: 11864 ptr: 10243 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EAEED
 *** FEE64 discriminator: block: 11864 ptr: 10245 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EAEED
 *** FEE64 discriminator: block: 11864 ptr: 10247 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EAEEE
 *** FEE64 discriminator: block: 11864 ptr: 10249 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EAF86
 *** FEE64 discriminator: block: 11864 ptr: 10251 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EAF86
 *** FEE64 discriminator: block: 11864 ptr: 10253 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EAF89
 *** FEE64 discriminator: block: 11864 ptr: 10255 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EAFF5
 *** FEE64 discriminator: block: 11864 ptr: 10257 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EAFF6
 ***            ADC data: block: 11864 ptr: 10259 data: 0xC4E5805E module: 19 fail: 0 range: 0 id:  1253 channel: 37 adc: 32862  ts: 0x000001340B4EB0D7
 ***            ADC data: block: 11864 ptr: 10261 data: 0xC4F58164 module: 19 fail: 0 range: 0 id:  1269 channel: 53 adc: 33124  ts: 0x000001340B4EB0D7
 ***            ADC data: block: 11864 ptr: 10263 data: 0xC47A7E60 module: 17 fail: 0 range: 0 id:  1146 channel: 58 adc: 32352  ts: 0x000001340B4EB119
 *** FEE64 discriminator: block: 11864 ptr: 10265 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EB1C2
 *** FEE64 discriminator: block: 11864 ptr: 10267 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EB1C2
 ***            ADC data: block: 11864 ptr: 10269 data: 0xC0BA7E24 module:  2 fail: 0 range: 0 id:   186 channel: 58 adc: 32292  ts: 0x000001340B4EB1CB
 ***            ADC data: block: 11864 ptr: 10271 data: 0xC3F7819B module: 15 fail: 0 range: 0 id:  1015 channel: 55 adc: 33179  ts: 0x000001340B4EB2C5
 *** FEE64 discriminator: block: 11864 ptr: 10273 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EB2D0
 *** FEE64 discriminator: block: 11864 ptr: 10275 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EB2D1
 *** FEE64 discriminator: block: 11864 ptr: 10277 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EB2D1
 ***            ADC data: block: 11864 ptr: 10279 data: 0xC4018232 module: 16 fail: 0 range: 0 id:  1025 channel:  1 adc: 33330  ts: 0x000001340B4EB317
 ***            ADC data: block: 11864 ptr: 10281 data: 0xC4E38022 module: 19 fail: 0 range: 0 id:  1251 channel: 35 adc: 32802  ts: 0x000001340B4EB32F
 *** FEE64 discriminator: block: 11864 ptr: 10283 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EB36A
 *** FEE64 discriminator: block: 11864 ptr: 10285 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EB36B
 ***            ADC data: block: 11864 ptr: 10287 data: 0xC3777B99 module: 13 fail: 0 range: 0 id:   887 channel: 55 adc: 31641  ts: 0x000001340B4EB411
 ***            ADC data: block: 11864 ptr: 10289 data: 0xC2777AEA module:  9 fail: 0 range: 0 id:   631 channel: 55 adc: 31466  ts: 0x000001340B4EB459
 ***            ADC data: block: 11864 ptr: 10291 data: 0xC17D7E20 module:  5 fail: 0 range: 0 id:   381 channel: 61 adc: 32288  ts: 0x000001340B4EB50B
 ***            ADC data: block: 11864 ptr: 10293 data: 0xC3C18043 module: 15 fail: 0 range: 0 id:   961 channel:  1 adc: 32835  ts: 0x000001340B4EB6AD
 *** FEE64 discriminator: block: 11864 ptr: 10295 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EB6B3
 *** FEE64 discriminator: block: 11864 ptr: 10297 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EB6B4
 *** FEE64 discriminator: block: 11864 ptr: 10299 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EB700
 *** FEE64 discriminator: block: 11864 ptr: 10301 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EB701
 ***            ADC data: block: 11864 ptr: 10303 data: 0xC0B7795F module:  2 fail: 0 range: 0 id:   183 channel: 55 adc: 31071  ts: 0x000001340B4EB743
 ***            ADC data: block: 11864 ptr: 10305 data: 0xC1777895 module:  5 fail: 0 range: 0 id:   375 channel: 55 adc: 30869  ts: 0x000001340B4EB8F3
 ***            ADC data: block: 11864 ptr: 10307 data: 0xC1BD7E75 module:  6 fail: 0 range: 0 id:   445 channel: 61 adc: 32373  ts: 0x000001340B4EB8F5
 ***            ADC data: block: 11864 ptr: 10309 data: 0xC17A7D62 module:  5 fail: 0 range: 0 id:   378 channel: 58 adc: 32098  ts: 0x000001340B4EB9BB
 ***            ADC data: block: 11864 ptr: 10311 data: 0xC0C08427 module:  3 fail: 0 range: 0 id:   192 channel:  0 adc: 33831  ts: 0x000001340B4EBA51
 *** FEE64 discriminator: block: 11864 ptr: 10313 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EBA97
 *** FEE64 discriminator: block: 11864 ptr: 10315 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EBA9A
 *** FEE64 discriminator: block: 11864 ptr: 10317 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EBAE5
 ***            ADC data: block: 11864 ptr: 10319 data: 0xC4777C32 module: 17 fail: 0 range: 0 id:  1143 channel: 55 adc: 31794  ts: 0x000001340B4EBB41
 ***            ADC data: block: 11864 ptr: 10321 data: 0xC3BA7DD5 module: 14 fail: 0 range: 0 id:   954 channel: 58 adc: 32213  ts: 0x000001340B4EBC75
 ***            ADC data: block: 11864 ptr: 10323 data: 0xC1B77199 module:  6 fail: 0 range: 0 id:   439 channel: 55 adc: 29081  ts: 0x000001340B4EBCDD
 ***            ADC data: block: 11864 ptr: 10325 data: 0xC2BA7DFD module: 10 fail: 0 range: 0 id:   698 channel: 58 adc: 32253  ts: 0x000001340B4EBD8D
 *** FEE64 discriminator: block: 11864 ptr: 10327 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EBE79
 *** FEE64 discriminator: block: 11864 ptr: 10329 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EBE7A
 *** FEE64 discriminator: block: 11864 ptr: 10331 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EBE7C
 *** FEE64 discriminator: block: 11864 ptr: 10333 data: 0x91640080 module: 17 information type:  6 information field: 0x00040080 ts: 0x000001340B4EBE82
 *** FEE64 discriminator: block: 11864 ptr: 10335 data: 0x8D640080 module: 13 information type:  6 information field: 0x00040080 ts: 0x000001340B4EBE84
 *** FEE64 discriminator: block: 11864 ptr: 10337 data: 0x89640080 module:  9 information type:  6 information field: 0x00040080 ts: 0x000001340B4EBE86
 ***            ADC data: block: 11864 ptr: 10339 data: 0xC4E880DE module: 19 fail: 0 range: 0 id:  1256 channel: 40 adc: 32990  ts: 0x000001340B4EBEE7
 ***            ADC data: block: 11864 ptr: 10341 data: 0xC0BA7D4E module:  2 fail: 0 range: 0 id:   186 channel: 58 adc: 32078  ts: 0x000001340B4EC16B
 ***            ADC data: block: 11864 ptr: 10343 data: 0xC4D9815E module: 19 fail: 0 range: 0 id:  1241 channel: 25 adc: 33118  ts: 0x000001340B4EC207
 *** FEE64 discriminator: block: 11864 ptr: 10345 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EC25F
 *** FEE64 discriminator: block: 11864 ptr: 10347 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EC25F
 *** FEE64 discriminator: block: 11864 ptr: 10349 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EC261
 *** FEE64 discriminator: block: 11864 ptr: 10351 data: 0x89640080 module:  9 information type:  6 information field: 0x00040080 ts: 0x000001340B4EC265
 *** FEE64 discriminator: block: 11864 ptr: 10353 data: 0x8E640080 module: 14 information type:  6 information field: 0x00040080 ts: 0x000001340B4EC266
 *** FEE64 discriminator: block: 11864 ptr: 10355 data: 0x91640080 module: 17 information type:  6 information field: 0x00040080 ts: 0x000001340B4EC266
 *** FEE64 discriminator: block: 11864 ptr: 10357 data: 0x8D640080 module: 13 information type:  6 information field: 0x00040080 ts: 0x000001340B4EC267
 ***            ADC data: block: 11864 ptr: 10359 data: 0xC37779EF module: 13 fail: 0 range: 0 id:   887 channel: 55 adc: 31215  ts: 0x000001340B4EC2E9
 ***            ADC data: block: 11864 ptr: 10361 data: 0xC1BA7C09 module:  6 fail: 0 range: 0 id:   442 channel: 58 adc: 31753  ts: 0x000001340B4EC3E5
 ***            ADC data: block: 11864 ptr: 10363 data: 0xC3F781E8 module: 15 fail: 0 range: 0 id:  1015 channel: 55 adc: 33256  ts: 0x000001340B4EC4BD
 ***            ADC data: block: 11864 ptr: 10365 data: 0xC401819A module: 16 fail: 0 range: 0 id:  1025 channel:  1 adc: 33178  ts: 0x000001340B4EC50F
 ***            ADC data: block: 11864 ptr: 10367 data: 0xC0B76514 module:  2 fail: 0 range: 0 id:   183 channel: 55 adc: 25876  ts: 0x000001340B4EC553
 ***            ADC data: block: 11864 ptr: 10369 data: 0xC1767E0A module:  5 fail: 0 range: 0 id:   374 channel: 54 adc: 32266  ts: 0x000001340B4EC573
 ***            ADC data: block: 11864 ptr: 10371 data: 0xC4D27FE7 module: 19 fail: 0 range: 0 id:  1234 channel: 18 adc: 32743  ts: 0x000001340B4EC5EF
 ***            ADC data: block: 11864 ptr: 10373 data: 0xC4ED80F8 module: 19 fail: 0 range: 0 id:  1261 channel: 45 adc: 33016  ts: 0x000001340B4EC5EF
 ***            ADC data: block: 11864 ptr: 10375 data: 0xC0BD7EE3 module:  2 fail: 0 range: 0 id:   189 channel: 61 adc: 32483  ts: 0x000001340B4EC61B
 *** FEE64 discriminator: block: 11864 ptr: 10377 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EC643
 *** FEE64 discriminator: block: 11864 ptr: 10379 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EC643
 ***            ADC data: block: 11864 ptr: 10381 data: 0xC4B77ACD module: 18 fail: 0 range: 0 id:  1207 channel: 55 adc: 31437  ts: 0x000001340B4EC6CB
 ***            ADC data: block: 11864 ptr: 10383 data: 0xC27A7E0D module:  9 fail: 0 range: 0 id:   634 channel: 58 adc: 32269  ts: 0x000001340B4EC7E1
 ***            ADC data: block: 11864 ptr: 10385 data: 0xC3B77BC9 module: 14 fail: 0 range: 0 id:   951 channel: 55 adc: 31689  ts: 0x000001340B4EC82D
 ***            ADC data: block: 11864 ptr: 10387 data: 0xC37A7BB1 module: 13 fail: 0 range: 0 id:   890 channel: 58 adc: 31665  ts: 0x000001340B4EC861
 ***            ADC data: block: 11864 ptr: 10389 data: 0xC0C0844D module:  3 fail: 0 range: 0 id:   192 channel:  0 adc: 33869  ts: 0x000001340B4EC929
 ***            ADC data: block: 11864 ptr: 10391 data: 0xC2B7762D module: 10 fail: 0 range: 0 id:   695 channel: 55 adc: 30253  ts: 0x000001340B4EC945
 ***            ADC data: block: 11864 ptr: 10393 data: 0xC1777945 module:  5 fail: 0 range: 0 id:   375 channel: 55 adc: 31045  ts: 0x000001340B4EC95B
 *** FEE64 discriminator: block: 11864 ptr: 10395 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4ECA21
 ***            ADC data: block: 11864 ptr: 10397 data: 0xC17A7DF1 module:  5 fail: 0 range: 0 id:   378 channel: 58 adc: 32241  ts: 0x000001340B4ECA23
 *** FEE64 discriminator: block: 11864 ptr: 10399 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4ECA24
 *** FEE64 discriminator: block: 11864 ptr: 10401 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4ECA26
 *** FEE64 discriminator: block: 11864 ptr: 10403 data: 0x91640080 module: 17 information type:  6 information field: 0x00040080 ts: 0x000001340B4ECA2C
 *** FEE64 discriminator: block: 11864 ptr: 10405 data: 0x89640080 module:  9 information type:  6 information field: 0x00040080 ts: 0x000001340B4ECA2F
 ***            ADC data: block: 11864 ptr: 10407 data: 0xC4BA7E17 module: 18 fail: 0 range: 0 id:  1210 channel: 58 adc: 32279  ts: 0x000001340B4ECC43
 *** FEE64 discriminator: block: 11864 ptr: 10409 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4ECD79
 *** FEE64 discriminator: block: 11864 ptr: 10411 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4ECE06
 *** FEE64 discriminator: block: 11864 ptr: 10413 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4ECE0B
 ***            ADC data: block: 11864 ptr: 10415 data: 0xC3777C20 module: 13 fail: 0 range: 0 id:   887 channel: 55 adc: 31776  ts: 0x000001340B4ED0F9
 ***            ADC data: block: 11864 ptr: 10417 data: 0xC4E6808A module: 19 fail: 0 range: 0 id:  1254 channel: 38 adc: 32906  ts: 0x000001340B4ED1A7
 *** FEE64 discriminator: block: 11864 ptr: 10419 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4ED1EE
 ***            ADC data: block: 11864 ptr: 10421 data: 0xC4E98154 module: 19 fail: 0 range: 0 id:  1257 channel: 41 adc: 33108  ts: 0x000001340B4ED26F
 ***            ADC data: block: 11864 ptr: 10423 data: 0xC4D48053 module: 19 fail: 0 range: 0 id:  1236 channel: 20 adc: 32851  ts: 0x000001340B4ED4C7
 ***            ADC data: block: 11864 ptr: 10425 data: 0xC4B77E0D module: 18 fail: 0 range: 0 id:  1207 channel: 55 adc: 32269  ts: 0x000001340B4ED4DB
 ***            ADC data: block: 11864 ptr: 10427 data: 0xC4FB80D2 module: 19 fail: 0 range: 0 id:  1275 channel: 59 adc: 32978  ts: 0x000001340B4ED58F
 *** FEE64 discriminator: block: 11864 ptr: 10429 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4ED5CC
 ***            ADC data: block: 11864 ptr: 10431 data: 0xC3B77B49 module: 14 fail: 0 range: 0 id:   951 channel: 55 adc: 31561  ts: 0x000001340B4ED705
 ***            ADC data: block: 11864 ptr: 10433 data: 0xC1777183 module:  5 fail: 0 range: 0 id:   375 channel: 55 adc: 29059  ts: 0x000001340B4ED76B
 ***            ADC data: block: 11864 ptr: 10435 data: 0xC0C083EA module:  3 fail: 0 range: 0 id:   192 channel:  0 adc: 33770  ts: 0x000001340B4ED801
 *** FEE64 discriminator: block: 11864 ptr: 10437 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4ED8DE
 *** FEE64 discriminator: block: 11864 ptr: 10439 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EDC74
 *** FEE64 discriminator: block: 11864 ptr: 10441 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EDC76
 *** FEE64 discriminator: block: 11864 ptr: 10443 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EDC77
 ***            ADC data: block: 11864 ptr: 10445 data: 0xC2B77E1F module: 10 fail: 0 range: 0 id:   695 channel: 55 adc: 32287  ts: 0x000001340B4EDE5D
 ***            ADC data: block: 11864 ptr: 10447 data: 0xC1B7780A module:  6 fail: 0 range: 0 id:   439 channel: 55 adc: 30730  ts: 0x000001340B4EDF3D
 *** FEE64 discriminator: block: 11864 ptr: 10449 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EE058
 *** FEE64 discriminator: block: 11864 ptr: 10451 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EE058
 *** FEE64 discriminator: block: 11864 ptr: 10453 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EE05A
 ***            ADC data: block: 11864 ptr: 10455 data: 0xC4E98141 module: 19 fail: 0 range: 0 id:  1257 channel: 41 adc: 33089  ts: 0x000001340B4EE147
 ***            ADC data: block: 11864 ptr: 10457 data: 0xC0B774AD module:  2 fail: 0 range: 0 id:   183 channel: 55 adc: 29869  ts: 0x000001340B4EE303
 *** FEE64 discriminator: block: 11864 ptr: 10459 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EE43D
 *** FEE64 discriminator: block: 11864 ptr: 10461 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EE43E
 ***            ADC data: block: 11864 ptr: 10463 data: 0xC4E880BC module: 19 fail: 0 range: 0 id:  1256 channel: 40 adc: 32956  ts: 0x000001340B4EE52F
 ***            ADC data: block: 11864 ptr: 10465 data: 0xC3B77A0F module: 14 fail: 0 range: 0 id:   951 channel: 55 adc: 31247  ts: 0x000001340B4EE5DD
 ***            ADC data: block: 11864 ptr: 10467 data: 0xC1BC7E7B module:  6 fail: 0 range: 0 id:   444 channel: 60 adc: 32379  ts: 0x000001340B4EE645
 ***            ADC data: block: 11864 ptr: 10469 data: 0xC0C0843B module:  3 fail: 0 range: 0 id:   192 channel:  0 adc: 33851  ts: 0x000001340B4EE6D9
 ***            ADC data: block: 11864 ptr: 10471 data: 0xC1A57E8F module:  6 fail: 0 range: 0 id:   421 channel: 37 adc: 32399  ts: 0x000001340B4EE70D
 ***            ADC data: block: 11864 ptr: 10473 data: 0xC4EB811B module: 19 fail: 0 range: 0 id:  1259 channel: 43 adc: 33051  ts: 0x000001340B4EE787
 ***            ADC data: block: 11864 ptr: 10475 data: 0xC2777D11 module:  9 fail: 0 range: 0 id:   631 channel: 55 adc: 32017  ts: 0x000001340B4EE7E9
 *** FEE64 discriminator: block: 11864 ptr: 10477 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EE81C
 *** FEE64 discriminator: block: 11864 ptr: 10479 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EE81E
 *** FEE64 discriminator: block: 11864 ptr: 10481 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EE81E
 ***            ADC data: block: 11864 ptr: 10483 data: 0xC4C28047 module: 19 fail: 0 range: 0 id:  1218 channel:  2 adc: 32839  ts: 0x000001340B4EE84F
 ***            ADC data: block: 11864 ptr: 10485 data: 0xC4B77E39 module: 18 fail: 0 range: 0 id:  1207 channel: 55 adc: 32313  ts: 0x000001340B4EE863
 *** FEE64 discriminator: block: 11864 ptr: 10487 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EE936
 ***            ADC data: block: 11864 ptr: 10489 data: 0xC4D98169 module: 19 fail: 0 range: 0 id:  1241 channel: 25 adc: 33129  ts: 0x000001340B4EEB6F
 *** FEE64 discriminator: block: 11864 ptr: 10491 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EEC02
 *** FEE64 discriminator: block: 11864 ptr: 10493 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EEC04
 *** FEE64 discriminator: block: 11864 ptr: 10495 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EEC05
 ***            ADC data: block: 11864 ptr: 10497 data: 0xC4CE7F40 module: 19 fail: 0 range: 0 id:  1230 channel: 14 adc: 32576  ts: 0x000001340B4EEC37
 *** FEE64 discriminator: block: 11864 ptr: 10499 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EED1C
 ***            ADC data: block: 11864 ptr: 10501 data: 0xC1777C28 module:  5 fail: 0 range: 0 id:   375 channel: 55 adc: 31784  ts: 0x000001340B4EEE13
 ***            ADC data: block: 11864 ptr: 10503 data: 0xC1B77B31 module:  6 fail: 0 range: 0 id:   439 channel: 55 adc: 31537  ts: 0x000001340B4EEEDD
 ***            ADC data: block: 11864 ptr: 10505 data: 0xC4E98109 module: 19 fail: 0 range: 0 id:  1257 channel: 41 adc: 33033  ts: 0x000001340B4EF01F
 *** FEE64 discriminator: block: 11864 ptr: 10507 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EF0F6
 *** FEE64 discriminator: block: 11864 ptr: 10509 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EF100
 *** FEE64 discriminator: block: 11864 ptr: 10511 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EF19A
 ***            ADC data: block: 11864 ptr: 10513 data: 0xC4F1807E module: 19 fail: 0 range: 0 id:  1265 channel: 49 adc: 32894  ts: 0x000001340B4EF277
 *** FEE64 discriminator: block: 11864 ptr: 10515 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EF310
 ***            ADC data: block: 11864 ptr: 10517 data: 0xC4FB80BB module: 19 fail: 0 range: 0 id:  1275 channel: 59 adc: 32955  ts: 0x000001340B4EF33F
 *** FEE64 discriminator: block: 11864 ptr: 10519 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EF3C3
 *** FEE64 discriminator: block: 11864 ptr: 10521 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EF3C5
 *** FEE64 discriminator: block: 11864 ptr: 10523 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EF3CA
 ***            ADC data: block: 11864 ptr: 10525 data: 0xC4E8809F module: 19 fail: 0 range: 0 id:  1256 channel: 40 adc: 32927  ts: 0x000001340B4EF407
 ***            ADC data: block: 11864 ptr: 10527 data: 0xC4EE7FCF module: 19 fail: 0 range: 0 id:  1262 channel: 46 adc: 32719  ts: 0x000001340B4EF4CF
 *** FEE64 discriminator: block: 11864 ptr: 10529 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EF4E1
 *** FEE64 discriminator: block: 11864 ptr: 10531 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EF4E4
 *** FEE64 discriminator: block: 11864 ptr: 10533 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EF4E6
 ***            ADC data: block: 11864 ptr: 10535 data: 0xC0C0843D module:  3 fail: 0 range: 0 id:   192 channel:  0 adc: 33853  ts: 0x000001340B4EF5B1
 ***            ADC data: block: 11864 ptr: 10537 data: 0xC1A57F27 module:  6 fail: 0 range: 0 id:   421 channel: 37 adc: 32551  ts: 0x000001340B4EF5E5
 ***            ADC data: block: 11864 ptr: 10539 data: 0xC3F78100 module: 15 fail: 0 range: 0 id:  1015 channel: 55 adc: 33024  ts: 0x000001340B4EF5F5
 *** FEE64 discriminator: block: 11864 ptr: 10541 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EF6A7
 *** FEE64 discriminator: block: 11864 ptr: 10543 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EF6A9
 *** FEE64 discriminator: block: 11864 ptr: 10545 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EF6AB
 ***            ADC data: block: 11864 ptr: 10547 data: 0xC2777ADF module:  9 fail: 0 range: 0 id:   631 channel: 55 adc: 31455  ts: 0x000001340B4EF6C1
 ***            ADC data: block: 11864 ptr: 10549 data: 0xC4D08095 module: 19 fail: 0 range: 0 id:  1232 channel: 16 adc: 32917  ts: 0x000001340B4EF727
 ***            ADC data: block: 11864 ptr: 10551 data: 0xC4BA7C32 module: 18 fail: 0 range: 0 id:  1210 channel: 58 adc: 31794  ts: 0x000001340B4EF73B
 ***            ADC data: block: 11864 ptr: 10553 data: 0xC3777EAC module: 13 fail: 0 range: 0 id:   887 channel: 55 adc: 32428  ts: 0x000001340B4EF741
 ***            ADC data: block: 11864 ptr: 10555 data: 0xC4777A8D module: 17 fail: 0 range: 0 id:  1143 channel: 55 adc: 31373  ts: 0x000001340B4EF769
 *** FEE64 discriminator: block: 11864 ptr: 10557 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EF7A7
 *** FEE64 discriminator: block: 11864 ptr: 10559 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EF7A9
 *** FEE64 discriminator: block: 11864 ptr: 10561 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EF7AE
 ***            ADC data: block: 11864 ptr: 10563 data: 0xC3BA7D3F module: 14 fail: 0 range: 0 id:   954 channel: 58 adc: 32063  ts: 0x000001340B4EF7D5
 ***            ADC data: block: 11864 ptr: 10565 data: 0xC47A7CE4 module: 17 fail: 0 range: 0 id:  1146 channel: 58 adc: 31972  ts: 0x000001340B4EF831
 *** FEE64 discriminator: block: 11864 ptr: 10567 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EF8C0
 *** FEE64 discriminator: block: 11864 ptr: 10569 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EF8C3
 *** FEE64 discriminator: block: 11864 ptr: 10571 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EF8C7
 *** FEE64 discriminator: block: 11864 ptr: 10573 data: 0x85640080 module:  5 information type:  6 information field: 0x00040080 ts: 0x000001340B4EFA8D
 *** FEE64 discriminator: block: 11864 ptr: 10575 data: 0x86640080 module:  6 information type:  6 information field: 0x00040080 ts: 0x000001340B4EFA8D
 *** FEE64 discriminator: block: 11864 ptr: 10577 data: 0x82640080 module:  2 information type:  6 information field: 0x00040080 ts: 0x000001340B4EFA91
 ***            ADC data: block: 11864 ptr: 10579 data: 0xC1BA7E8E module:  6 fail: 0 range: 0 id:   442 channel: 58 adc: 32398  ts: 0x000001340B4EFA95
... 212 more lines ...
  383   Wed Oct 12 02:58:19 2016 TD & CGWednesday 12 October
10.50 Merger & TapeServer found stopped
      connect errors - see attachment 1

      DSSSD bias and leakage currents OK - see attachments 2 & 3

      Most recent data file R17_440 last accessed 08.22 12.10.16

      R17_440 ADC data synchronised

aidas1> ./analyser2 /TapeData/Sept2016/R17_440
 *** GREAT format 3.2.0 analyser - TD - May 2014
 *** ERROR: READ I/O error:       5002
                   blocks:      30546
          ADC data format:  147630891 ( 1189229.1 Hz)
        Other data format:  101593923 (  818381.9 Hz)
 Sample trace data format:          0 (       0.0 Hz)
         Undefined format:          0 (       0.0 Hz)
   Other data format type:      PAUSE:        101 (       0.8 Hz)
                               RESUME:        101 (       0.8 Hz)
                              SYNC100:    1133804 (    9133.3 Hz)
                           FEE64 disc:  100456290 (  809217.8 Hz)
                             MBS info:       3627 (      29.2 Hz)
                           Other info:          0 (       0.0 Hz)

   ADC data range bit set:        151 (       1.2 Hz)

                Timewarps:        ADC:          0 (       0.0 Hz)
                                PAUSE:          0 (       0.0 Hz)
                               RESUME:          0 (       0.0 Hz)
                              SYNC100:          0 (       0.0 Hz)
                           FEE64 disc:          0 (       0.0 Hz)
                             MBS info:          0 (       0.0 Hz)
                            Undefined:          0 (       0.0 Hz)
                         Sample trace:          0 (       0.0 Hz)

 Timestamp elapsed time:      124.140 s
 FEE module #:   1 elapsed dead time       0.728 s
 FEE module #:   2 elapsed dead time       0.184 s
 FEE module #:   3 elapsed dead time       0.000 s
 FEE module #:   4 elapsed dead time       0.000 s
 FEE module #:   5 elapsed dead time       1.034 s
 FEE module #:   6 elapsed dead time       3.462 s
 FEE module #:   7 elapsed dead time       0.000 s
 FEE module #:   8 elapsed dead time       0.000 s
 FEE module #:   9 elapsed dead time       0.064 s
 FEE module #:  10 elapsed dead time       0.003 s
 FEE module #:  11 elapsed dead time       0.000 s
 FEE module #:  12 elapsed dead time       0.000 s
 FEE module #:  13 elapsed dead time       0.000 s
 FEE module #:  14 elapsed dead time       0.062 s
 FEE module #:  15 elapsed dead time       0.018 s
 FEE module #:  16 elapsed dead time       0.005 s
 FEE module #:  17 elapsed dead time       0.817 s
 FEE module #:  18 elapsed dead time       0.035 s
 FEE module #:  19 elapsed dead time       0.048 s
 FEE module #:  20 elapsed dead time       0.000 s
 FEE module #:  21 elapsed dead time       0.000 s
 FEE module #:  22 elapsed dead time       0.103 s
 FEE module #:  23 elapsed dead time       0.216 s
 FEE module #:  24 elapsed dead time       0.000 s
 FEE module #:  25 elapsed dead time       0.000 s
 FEE module #:  26 elapsed dead time       0.000 s
 FEE module #:  27 elapsed dead time       0.000 s
 FEE module #:  28 elapsed dead time       0.000 s
 FEE module #:  29 elapsed dead time       0.000 s
 FEE module #:  30 elapsed dead time       0.000 s
 FEE module #:  31 elapsed dead time       0.000 s
 FEE module #:  32 elapsed dead time       0.000 s

 *** Program elapsed time:   14.129s ( 2161.951 blocks/s, 135.122 Mb/s)

Conclude DAQ ran without problem for c. 16.5h which is a significant improvement
assuming that it can be consistently reproduced.

11.20 Merger restart did not clear connect/timeout issues 

      Re-route BNC - BNC RG58 cable with 50MHz clock from BRIKEN to
      AIDA Master MACB external clock input (rear panel) so that it will
      not be stepped upon. 

      Power cycle AIDA FEE64s

      N.B. I selected 'Switch ALL On' rather than 'Sequence ALL On' by mistake and one
      of the USB ac mains controller output 250VAC/16A fuses blew - use 'Sequence ALL On'

      TS_SYNC_PHASE 0

      FEE64 temperatures OK
      *All* system-wide checks OK

      B2F/F11 temperature +24.6 deg C, d.p. +8.9 deg C,RH 36.6%

      ASIC settings 2016Sep02-18.17.01
      slow comparator 0x10 -> 0x0a
      LEC/MEC fast comparators # 1, 55 & 58 disabled for all FEE64s

      Master MACB serial #13 (see https://elog.ph.ed.ac.uk/AIDA/367)
      Master MACB mode 5

14.05 DAQ starts (file Sept2016/R21)

15.30 Sequence of three electrical power dips over 30 minute period. RIKEN public address
      system reports that TEPCO (Tokyo Electric Power Company) - the site supplier - is
      having region-wide problems.

      The third power dip stopped DAQ.

      Unable to recover by restarting merger

      Power cycle FEE64s

16.20 DAQ restarts (file Sept2016/R22)

19.05 DAQ stops
      
      Because of risk of power outages due to TEPCO distribution problems we have powered
      down AIDA and Julabo FL1006 chiller and disconnected from ac mains.
Attachment 1: 1.png
1.png
Attachment 2: 2.png
2.png
Attachment 3: 3.png
3.png
Attachment 4: 4.png
4.png
Attachment 5: 5.png
5.png
  384   Thu Oct 13 06:07:43 2016 TD & CGThursday 13 October
11.40 Power cycle AIDA FEE64s
      Set TS_SYNC_PHASE 0

      DSSSD bias/leakage current OK - see attachment 1-2
      FEE64 temperatures OK - see attachment 3
      *All* system-wide checks OK

      B2F/F11 temperature + deg C, d.p. + deg C,RH %

      ASIC settings 2016Sep02-18.17.01
      slow comparator 0x10 -> 0x0a
      LEC/MEC fast comparators # 1, 55 & 58 disabled for all FEE64s

      Master MACB serial #13 (see https://elog.ph.ed.ac.uk/AIDA/367)
      Master MACB mode 5

12.15 DAQ starts (file Sept2016/R24)

15.16 DAQ stops OK

15.18 DAQ starts (R25)
 
      Pulser walkthrough 

      BNC PB-4 amplitudes 10,000 - 90,000 @ 10,000 step

      See attachment 4

      Spectra saved 13.10.16 15.32 (08.32 FEE64s)

15.30 DAQ stops OK

15.38 DAQ starts (R26)
 
      Pulser walkthrough 

      BNC PB-4 amplitudes 8,000 - 2,000 @ 2,000 step

      See attachment 5

      Spectra saved 13.10.16 15.47 (08.47 FEE64s)

15.45 DAQ stops

15.50 DAQ starts (R27)
      LEC/MEC FSR 20MeV -> 1GeV 

      BNC PB-4 amplitude 90,000

      Spectra saved 13.10.16 16.07 (09.05 FEE64s)

16.05 DAQ stops

16.12 DAQ starts (R28)
      LEC/MEC FSR 1GeV -> 20MeV

      BNC PB-4 off (noise + background activity only)

      Spectra saved 13.10.16 16:49 (saved 09.49 FEE64s)

16.48 DAQ stops

16.57 DAQ starts (R29)

      BNC PB-4 90,000 amplitude ~23Hz freq.

17.26 Lost SYNC pulses. Merger+TapeServer stopped writing to file (noticed 18.20)

18.25 R29 closed.

19:20 NIM bin supplying TTL clock to master MACB failed at or around the same time as the DAQ stop occurred.
      
      Need to replace NIM bin before clock can be supplied.


21.20 DAQ starts (R32)

23.51 DAQ found stopped, most recent file R32_26 (last access 22.34 13.10.16)

23.56 Restarted merger & immediately requested DAQ STOP - OK
      DAQ reset & setup
      System-wide tests all OK

00.01 DAQ starts (R33)
Attachment 1: 1.png
1.png
Attachment 2: 2.png
2.png
Attachment 3: 3.png
3.png
Attachment 4: 4.png
4.png
Attachment 5: 5.png
5.png
  385   Thu Oct 13 16:12:06 2016 TD & CGFriday 14 October
DAQ continues (R33)

aidas1> ./analyser2 /TapeData/Sept2016/R33_0
 *** GREAT format 3.2.0 analyser - TD - May 2014
 *** ERROR: READ I/O error:       5002
                   blocks:      32000
          ADC data format:  258854184 ( 1075951.6 Hz)
        Other data format:    2233816 (    9285.1 Hz)
 Sample trace data format:          0 (       0.0 Hz)
         Undefined format:          0 (       0.0 Hz)
   Other data format type:      PAUSE:         95 (       0.4 Hz)
                               RESUME:         95 (       0.4 Hz)
                              SYNC100:    2200965 (    9148.5 Hz)
                           FEE64 disc:      26965 (     112.1 Hz)
                             MBS info:       5696 (      23.7 Hz)
                           Other info:          0 (       0.0 Hz)

   ADC data range bit set:        273 (       1.1 Hz)

                Timewarps:        ADC:          0 (       0.0 Hz)
                                PAUSE:          0 (       0.0 Hz)
                               RESUME:          0 (       0.0 Hz)
                              SYNC100:          0 (       0.0 Hz)
                           FEE64 disc:          0 (       0.0 Hz)
                             MBS info:          0 (       0.0 Hz)
                            Undefined:          0 (       0.0 Hz)
                         Sample trace:          0 (       0.0 Hz)

 Timestamp elapsed time:      240.582 s
 FEE module #:   1 elapsed dead time       0.000 s
 FEE module #:   2 elapsed dead time       0.026 s
 FEE module #:   3 elapsed dead time       0.000 s
 FEE module #:   4 elapsed dead time       0.000 s
 FEE module #:   5 elapsed dead time       0.278 s
 FEE module #:   6 elapsed dead time       1.219 s
 FEE module #:   7 elapsed dead time       0.000 s
 FEE module #:   8 elapsed dead time       0.000 s
 FEE module #:   9 elapsed dead time       0.000 s
 FEE module #:  10 elapsed dead time       0.000 s
 FEE module #:  11 elapsed dead time       0.000 s
 FEE module #:  12 elapsed dead time       0.000 s
 FEE module #:  13 elapsed dead time       0.000 s
 FEE module #:  14 elapsed dead time       0.001 s
 FEE module #:  15 elapsed dead time       0.014 s
 FEE module #:  16 elapsed dead time       0.015 s
 FEE module #:  17 elapsed dead time       0.703 s
 FEE module #:  18 elapsed dead time       0.196 s
 FEE module #:  19 elapsed dead time       1.037 s
 FEE module #:  20 elapsed dead time       0.063 s
 FEE module #:  21 elapsed dead time       0.000 s
 FEE module #:  22 elapsed dead time       0.006 s
 FEE module #:  23 elapsed dead time       0.073 s
 FEE module #:  24 elapsed dead time       0.000 s
 FEE module #:  25 elapsed dead time       0.000 s
 FEE module #:  26 elapsed dead time       0.000 s
 FEE module #:  27 elapsed dead time       0.000 s
 FEE module #:  28 elapsed dead time       0.000 s
 FEE module #:  29 elapsed dead time       0.000 s
 FEE module #:  30 elapsed dead time       0.000 s
 FEE module #:  31 elapsed dead time       0.000 s
 FEE module #:  32 elapsed dead time       0.000 s

 *** Program elapsed time:   22.278s ( 1436.394 blocks/s,  89.775 Mb/s)

00.16 DSSSD bias and leakage currents OK - see attachments 1 & 2
      FEE64 temperatures OK - see attachment 3
      Temperature +25.0 deg C, d.p. +8.2 deg C, RH 33.8%

00.25 DAQ stopped
      Unable to restart merger - see attachment 4 - DAQ STOP OK
      System wide tests fail - see attachments 5 & 6
      DAQ RESET & SETUP, ReSYNC OK
      System wide checks fail - as above

      Several FEE64 power cycles and eventually an aidas1 reboot due to
      1) timeouts from random FEE64s following power cycle + 10 mins
      2) data transfer links (X) dropping at DAQ GO 

01.49 DAQ starts (R40)

08.31 DAQ found stopped
      Most recently accessed file R40_91 @ 06.26

      Restart merger & request DAQ STOP
      Transient timeout from nnaida8 but STOP completed OK

11.10 DSSSD bias and leakage currents OK - see attachments 7 & 8
      FEE64 temperatures OK - see attachment 9

      System-wide checks - system clock, SYNC errors and SUNC count fail - see attachments 10-13

      ReSYNC fails - see attachment 14
      
11.30 Analysis of R40 data

      R40_91 ADC data synchronised

aidas1> ./analyser2 /TapeData/Sept2016/R40_91
 *** GREAT format 3.2.0 analyser - TD - May 2014
 *** ERROR: READ I/O error:       5002
                   blocks:      30880
          ADC data format:  249997809 ( 1194334.5 Hz)
        Other data format:    1952111 (    9326.0 Hz)
 Sample trace data format:          0 (       0.0 Hz)
         Undefined format:          0 (       0.0 Hz)
   Other data format type:      PAUSE:         55 (       0.3 Hz)
                               RESUME:         55 (       0.3 Hz)
                              SYNC100:    1915685 (    9152.0 Hz)
                           FEE64 disc:      30044 (     143.5 Hz)
                             MBS info:       6272 (      30.0 Hz)
                           Other info:          0 (       0.0 Hz)

   ADC data range bit set:        303 (       1.4 Hz)

                Timewarps:        ADC:          0 (       0.0 Hz)
                                PAUSE:          0 (       0.0 Hz)
                               RESUME:          0 (       0.0 Hz)
                              SYNC100:          0 (       0.0 Hz)
                           FEE64 disc:          0 (       0.0 Hz)
                             MBS info:          0 (       0.0 Hz)
                            Undefined:          0 (       0.0 Hz)
                         Sample trace:          0 (       0.0 Hz)

 Timestamp elapsed time:      209.320 s
 FEE module #:   1 elapsed dead time       0.000 s
 FEE module #:   2 elapsed dead time       0.000 s
 FEE module #:   3 elapsed dead time       0.000 s
 FEE module #:   4 elapsed dead time       0.000 s
 FEE module #:   5 elapsed dead time       0.167 s
 FEE module #:   6 elapsed dead time       0.529 s
 FEE module #:   7 elapsed dead time       0.000 s
 FEE module #:   8 elapsed dead time       0.000 s
 FEE module #:   9 elapsed dead time       0.000 s
 FEE module #:  10 elapsed dead time       0.000 s
 FEE module #:  11 elapsed dead time       0.000 s
 FEE module #:  12 elapsed dead time       0.000 s
 FEE module #:  13 elapsed dead time       0.000 s
 FEE module #:  14 elapsed dead time       0.002 s
 FEE module #:  15 elapsed dead time       0.018 s
 FEE module #:  16 elapsed dead time       0.043 s
 FEE module #:  17 elapsed dead time       0.098 s
 FEE module #:  18 elapsed dead time       0.035 s
 FEE module #:  19 elapsed dead time       0.378 s
 FEE module #:  20 elapsed dead time       0.010 s
 FEE module #:  21 elapsed dead time       0.000 s
 FEE module #:  22 elapsed dead time       0.000 s
 FEE module #:  23 elapsed dead time       0.046 s
 FEE module #:  24 elapsed dead time       0.000 s
 FEE module #:  25 elapsed dead time       0.000 s
 FEE module #:  26 elapsed dead time       0.000 s
 FEE module #:  27 elapsed dead time       0.000 s
 FEE module #:  28 elapsed dead time       0.000 s
 FEE module #:  29 elapsed dead time       0.000 s
 FEE module #:  30 elapsed dead time       0.000 s
 FEE module #:  31 elapsed dead time       0.000 s
 FEE module #:  32 elapsed dead time       0.000 s

 *** Program elapsed time:    6.613s ( 4669.392 blocks/s, 291.837 Mb/s)


21.52 DAQ starts (Sept2016/R41)  BRIKEN filename 252CfwithAida75mm

      Correlation scaler reset requested by BRIKEN DAQ following start of run to disk

      End of AIDA snout positioned at edge of (CH2)n moderator aperture for
      ORNL HPGe clover detectors

      RIKEN 252Cf source ~25k neutrons/s

      FEE64 temperatures OK
      *All* system-wide checks OK

      B2F/F11 temperature + deg C, d.p. + deg C,RH %

      ASIC settings 2016Sep02-18.17.01
      slow comparator 0x10 -> 0x0a
      LEC/MEC fast comparators # 1, 55 & 58 disabled for all FEE64s

      Master MACB serial #13 (see https://elog.ph.ed.ac.uk/AIDA/367)
      Master MACB mode 5
      TS_SYNC_PHASE 0

22.17 DAQ stops OK
      BRIKEN DAQ stopped at about same time

22.45 DAQ starts (R42)

      AIDA withdrawn from (CH2)n moderator, 252Cf source removed
Attachment 1: 10.png
10.png
Attachment 2: 11.png
11.png
Attachment 3: 12.png
12.png
Attachment 4: 13.png
13.png
Attachment 5: 14.png
14.png
Attachment 6: 15.png
15.png
Attachment 7: 7.png
7.png
Attachment 8: 8.png
8.png
Attachment 9: 9.png
9.png
Attachment 10: 10.png
10.png
Attachment 11: 11.png
11.png
Attachment 12: 12.png
12.png
Attachment 13: 14.png
14.png
Attachment 14: 15.png
15.png
  32   Sun Feb 15 22:30:48 2015 TDJulabo FL11006 Operating Manual
Attachment 1: Julabo_FL11006.pdf
Julabo_FL11006.pdf Julabo_FL11006.pdf Julabo_FL11006.pdf Julabo_FL11006.pdf Julabo_FL11006.pdf Julabo_FL11006.pdf Julabo_FL11006.pdf Julabo_FL11006.pdf
  42   Fri Feb 20 10:48:09 2015 TDHow To Connect the FEE64 System Console Using PuTTY
Set permissions for the USB-serial device using the command

sudo chmod 777 /dev/ttyUSB0

Note: Vic Pucknell reports that he has sometime observed the device
rotate between /dev/ttyUSB0, /dev/ttyUSB1, /dev/ttyUSB2 etc - make\
sure you are using the correct device name with the command:

ls -l /dev/ttyUSB*


Start PuTTY

Select Connection Type 'Serial' 
Enter Serial Line (/dev/ttyUSB0 or /dev/ttyUSB1)
Enter speed (9600)
Select 'Open'

Note: permissions for the USB-serial device will revert to their
default (mode 440) when the OS notices the change but by then
the serial line connection will have been established.
  47   Mon Feb 23 11:10:44 2015 TDOutline test plan - RIKEN - Feb 2015
With the exception of one AIDA FEE64 PSU configuration test (5) and the upgrades
of the AIDA FEE64 firmware (8) and MIDAS DAQ software (9) we have now completed all
of tasks described in the outline plan.
Attachment 1: RIKEN_test_-_Feb_2015.txt
Outline test plan - RIKEN - Feb 2015

1) Move Julabo FL006 recirculating chiller (plus ac mains transformer)
   and AIDA assembly stand into position.

   Consult Shunji Nishimura
   If we move equipment for the test, do we have to move it back before we leave?

2) Check 3-phase connection to ac mains transformer. Check chiller POST.

   TD - upload images from April/May 2014 to Elog

3) Re-connect Julabo FL006 recirculating chiller to AIDA assembly.
   Inspect coolant loop. Check coolant levels. Start chiller.
   Inspect for leaks. Check coolant levels.

4) Replace faulty USB-controlled ac mains switch. Test operation with
   FEE modules disconnected.

5) Connect 8x FEE modules to ?x FEE PSUs.

   PCS - default initial configuration?

6) Check MACB cabling. Power up 8x FEE modules.

7) Check setup & configuration (ASICs, FEE64).
   Default ASIC parameters (tau = 2us). Waveforms off.

8) Test FEE64 performannce with pulser and no input load.
   Expect pulser peak width < 15 ch FWHM.

*** Status quo ante re-established ***


Test 1

1) Install 1x MSL type BB18-1000 DSSSD with 3x modified 0.9m Kapton PCBs
   plus 1x unmodified 0.9m Kapton PCB. Install 207Bi source.

2) Bias DSSSD using Silena 7710 Quad Bias Supply (ground referenced bias)
   and confirm stability problems observed April/may 2014 are still present.

Test 2

1) Bias DSSSD using CAEN N1419B (floating bias) and confirm stability problems
   improve. Assess impact of preAmp reference setting - if possible, proceed
   with default setting.

2) Test FEE64 performance with pulser.
   Expectation pulser peak width < 120-150 ch FWHM.

Test 3

1) Adjust FEE64 PSU voltage levels per procedure described by PCS.

2) Test FEE64 performance with pulser. Compare to previous test.

Test 4

1) Attach heavy-duty grounding cable between FEE adaptor PCBs.

2) Test FEE64 performance with pulser. Compare to previous tests.

Test 5

1) Re-configure FEE PSU cabling per PCS request(s)

2) Test FEE64 performance with pulser. Compare to previous tests.

Test 6

1) Re-assess impact of preAmp reference setting.

Test 7

1) With optimum configuration obtain and analyse data files with pulser
   and 207Bi data.

Test 8

1) Update FEE firmware. Repeat test 7.

Test 9

1) Update MIDAS software. Repeat test 7.

  51   Thu Mar 5 12:11:44 2015 TDTo Do list - March 2015
A draft 'to do' list in preparation for further AIDA tests at RIKEN from mid-April.

Please feel free to add your comments, suggestions, other items etc.


High Priority

- [VP] fix problem with new merger program which crashes (SEGV) at startup
  see https://elog.ph.ed.ac.uk/AIDA/48

- [PCS/Edinburgh] fit 4x AIDA FEE64 PSUs with LCR filters and return to RIKEN

- [PM] transfer AIDA support assembly from original base to new RIKEN F11 base

Medium Priority

- [VP] TapeServer 'no storage' mode should not create files (cf. MIDAS VME DAQ TapeServer behaviour) ... ?

- [VP] TapeServer should check for existence of file before opening new file
  (and possibly overwriting an existing file) as a workaround for umode 022 file perms

- [VP] Define robust procedure for starting/stopping MIDAS DAQ/Merger/TapeService

- [VP/PCS] Critically review data synchronisation methodology
  see https://elog.ph.ed.ac.uk/BRIKEN/5 and https://elog.ph.ed.ac.uk/BRIKEN/6

Low Priority

- [Edinburgh] modify USB ac mains switches - relays default to off state - ship to RIKEN

- [Edinburgh] purchase 3x 3TB SATA disks for installation in aidas1 
  53   Mon Mar 9 13:59:32 2015 TDNew AIDA support frame for F11/F12 @ RIKEN
Attachment 1: IMG_2798.JPG
IMG_2798.JPG
  55   Mon Mar 9 16:51:26 2015 TDAIDA adaptor PCB configuration - RIKEN - Feb 2015
Attachment 1: IMG_2781.JPG
IMG_2781.JPG
Attachment 2: IMG_2782.JPG
IMG_2782.JPG
Attachment 3: IMG_2783.JPG
IMG_2783.JPG
Attachment 4: IMG_2784.JPG
IMG_2784.JPG
Attachment 5: IMG_2787.JPG
IMG_2787.JPG
Attachment 6: IMG_2796.JPG
IMG_2796.JPG
ELOG V3.1.3-7933898