]> jspc29.x-matter.uni-frankfurt.de Git - daqtools.git/commitdiff
added DiRICH to Padiwa Thresholds, mt
authorMichael Traxler <M.Traxler@gsi.de>
Tue, 24 May 2022 00:59:31 +0000 (02:59 +0200)
committerMichael Traxler <M.Traxler@gsi.de>
Tue, 24 May 2022 00:59:31 +0000 (02:59 +0200)
web/htdocs/padiwa/padiwa.htm

index 4053ff4c801d69181302b4bbb3854665e2cfa0ae..5cfcf9d0035b1b1928f544c5d11d918158367591 100644 (file)
@@ -4,12 +4,12 @@
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
 <link href="../layout/styles.css" rel="stylesheet" type="text/css"/>
 <script src="../scripts/scripts.js" type="text/javascript"></script>
-<title>Padiwa</title>
+<title>Padiwa / DiRICH Threshold</title>
 </head>
 <body>
 
 
-<h2><a href="../">Padiwa</a></h2>
+<h2><a href="../">Padiwa Temp, ID, Thresholds and DiRICH Thresholds </a></h2>
 <form acion="">
 <table class="form"><tr class="head"><th colspan=2>Configuration
 <tr title="4-digit hex board address for data query"><td>Board
@@ -23,6 +23,7 @@
            <option value="temp">Temperature
            <option value="id">ID
            <option value="thresh">Thresholds
+           <option value="thresh_dirich">Thresholds for DiRICH
          </select>
 <tr title="Minimum &amp; Maximum value for temperature color code"><td>Min/Max
     <td><input onChange="setValues()" type="text" id="form_min" name="min" maxlength="6" value="10">
@@ -74,8 +75,13 @@ function update(data) {
     if(isShown[j])
       o += "<th>"+c[j][0];
     } 
-  
-  for(i = 1; i <= 4; i++) {
+
+
+    var max_chains = 4;
+    if(option == "thresh_dirich") max_chains = 2;
+
+        
+  for(i = 1; i <= max_chains; i++) {
     o += "<tr class=\""+(i%2?"odd":"even")+"\"><th>"+(i-1);
     for(j=0;j<b.length-1;j++) {
       if(isShown[j]) {
@@ -106,6 +112,21 @@ function update(data) {
             o += "<span class=\"fixed\" style=\"background:"+col+"\">"+valhex+" "+valmV+"mV"+"</span><br>";
             }
           }
+          else if(option == "thresh_dirich") {
+              o += "<td>";
+              console.log(c);
+              for(k=1;k<=16;k++) {
+                  val = c[j][(i-1)*16+k]&0xffff;
+                  //console.log(val);
+                  valhex = "---";
+                  valmV  = "---";
+                  col = findcolor((val),0x6500,0x9000,0);
+                  valhex = (val.toString(16));
+                  valmV  = (val*35E-3).toString(10).slice(0,7);
+                  o += "<span class=\"fixed\" style=\"background:"+col+"\">"+valhex+" "+valmV+"mV"+"</span><br>";
+                  //console.log(o);
+              }
+          }
         }
       }
     }