]> jspc29.x-matter.uni-frankfurt.de Git - mvd_soft.git/commitdiff
optimization regarding all-fired and none-fired states in unpacking. Gained more...
authorJan Michel <j.michel@gsi.de>
Thu, 2 Oct 2014 12:07:42 +0000 (14:07 +0200)
committerJan Michel <j.michel@gsi.de>
Thu, 2 Oct 2014 12:07:42 +0000 (14:07 +0200)
s-curves/cpp_based-on-dabc-lib/unpacker.cxx

index 0d93c7881225e64d64d9853642731e6030471395..e276aeddf5b55f53ca297d8c5a577947a20c2f23 100644 (file)
@@ -281,11 +281,22 @@ signed analyzeData(hadaq::RawSubevent* sub, unsigned ix, unsigned datalen, unsig
       rowcount[row]++;
       while(1) {
         d = sub->Data(ix++);
-        //printf("%08x", d);
-        for(int i = 0; i < 0x20; i++) {
-          pixelprob[1152 * row + pos*0x20 + i] += d & 0x1;
-          d = d >> 1;
+        //////loop over all bits, optimized for all-set and all-clear states
+        unsigned start = 1152 * row + pos*0x20;
+        if(d == 0) {}
+        else if(d == 0xFFFFFFFF) {
+          for(unsigned i = start; i < start + 0x20; i++) {
+            pixelprob[i] ++;
+            }
+          }
+        else {  
+          for(unsigned i = start; i < start + 0x20; i++) {
+            pixelprob[i] += d & 0x1;
+            d >>= 1;
+            }
           }
+        /////////////end add loop  
+        
         pos++;
         if(ix >= RocEnd) break;
         }