]> jspc29.x-matter.uni-frankfurt.de Git - mvd_soft.git/commitdiff
mask out pixels of unconcerned banks
authorPhilipp Klaus <klaus@physik.uni-frankfurt.de>
Tue, 14 Jul 2015 15:45:20 +0000 (17:45 +0200)
committerPhilipp Klaus <klaus@physik.uni-frankfurt.de>
Tue, 14 Jul 2015 15:45:20 +0000 (17:45 +0200)
s-curves/cpp_based-on-dabc-lib/unpacker.cxx

index 5b257bdba812bc8ec70f7d70e1b22ff26e22f0a8..88e49588307b0d4fcd577142dbcfee9b22fc60e7 100644 (file)
@@ -175,6 +175,8 @@ signed analyze_C0(hadaq::RawSubevent* sub, unsigned ix, unsigned framelen, unsig
   for (j = 0; ix + j < ix + 0x25; j++) {
     unsigned d = sub->Data(ix+j);
     //sf.data[j] = d;
+    // mask out any pixels of banks who's threshold should be set to 255
+    if ((j/9) != sf.bank) continue;
     //////loop over all bits, optimized for all-set and all-clear states
     unsigned start = 1152 * sf.row + j*0x20;
     if(d == 0) {}