From: hadeshyp Date: Wed, 28 Nov 2012 19:13:49 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=86710af9c290703764182aea71d4b2343e9d50aa;p=daqtools.git *** empty log message *** --- diff --git a/cts/htdocs/thresh/padiwa.htm b/cts/htdocs/thresh/padiwa.htm index 4206eba..b64ffa1 100644 --- a/cts/htdocs/thresh/padiwa.htm +++ b/cts/htdocs/thresh/padiwa.htm @@ -71,9 +71,9 @@ function update(data) { else if(option == "thresh") { o += ""; for(k=1;k<=16;k++) { - val = c[j][(i-1)*16+k] & 0xffff; - if(c[j][(i-1)*16+k]&0x7ff80000 != 0) val = "---"; - o += ""+(val.toString(16))+"
"; + val = c[j][(i-1)*16+k]; +// if(c[j][(i-1)*16+k]&0x7ff80000 != 0) val = "---"; + o += ""+((val*1).toString(16))+"
"; } } }