]> jspc29.x-matter.uni-frankfurt.de Git - daqtools.git/commitdiff
Update CTS GUI coincidence display:
authorJan Michel <michel@physik.uni-frankfurt.de>
Tue, 18 Apr 2023 11:21:41 +0000 (13:21 +0200)
committerJan Michel <michel@physik.uni-frankfurt.de>
Tue, 18 Apr 2023 11:21:41 +0000 (13:21 +0200)
n case of more than 8 input multiplexers coincidences only use first 8 muxes.
Add highlighting of coincidence checkboxes to show input they refer to

web/htdocs/layout/cts.css
web/htdocs/scripts/cts.js

index ab1c97f2dd962392cb1992db2f4b5f3183519921..e86c53b5720f8ca2dc2c9192253e54c73b0d9bb1 100644 (file)
    .noavail input{
       visibility:hidden;
       }
+
+  input[type=checkbox] {
+    margin:0 1px;
+    padding:0;
+    }
index e311efd9e62d0d4e51a87ff536873ceb8f16af8d..43a551b41ffb2275d009e9d4dd1dead5ec9a57e2 100644 (file)
@@ -633,7 +633,7 @@ var CTS = new Class({
    renderCoins: function() {
       $$("#coin-tab th.coin abbr, #coin-tab th.inhibit abbr").each(function(e){
          e.set("text", e.get('text').match(/^(.*)(\(.*\))?/)[1] 
-            + " (" + (this.defs.properties.trg_input_count-1) + ":0)");
+            + " (" + (Math.min(this.defs.properties.trg_input_count-1,7)) + ":0)");
       }.bind(this));
       
       for(var i=0; i<this.defs.properties.trg_coin_count; i++) {
@@ -653,9 +653,9 @@ var CTS = new Class({
            ]) 
         );
          
-         for(var j=this.defs.properties.trg_input_count-1; j >= 0; j--) {
-            coin.adopt(   new Element('input', {'type': 'checkbox', 'class': 'autoupdate autocommit', 'slice': reg+'.coin_mask['+j+']'}));
-            inhibit.adopt(new Element('input', {'type': 'checkbox', 'class': 'autoupdate autocommit', 'slice': reg+'.inhibit_mask['+j+']'}));
+         for(var j=Math.min(this.defs.properties.trg_input_count-1,7); j >= 0; j--) {
+            coin.adopt(   new Element('input', {'type': 'checkbox', 'class': 'autoupdate autocommit', 'slice': reg+'.coin_mask['+j+']', 'flashgroup': 'itc-' + (j + parseInt(this.defs.properties.trg_input_itc_base))}));
+            inhibit.adopt(new Element('input', {'type': 'checkbox', 'class': 'autoupdate autocommit', 'slice': reg+'.inhibit_mask['+j+']', 'flashgroup': 'itc-' + (j + parseInt(this.defs.properties.trg_input_itc_base))}));
          }
       }
    },