]> jspc29.x-matter.uni-frankfurt.de Git - mvd_soft.git/commitdiff
check validity of s-curve header information
authorPhilipp Klaus <klaus@physik.uni-frankfurt.de>
Thu, 22 Jan 2015 15:32:12 +0000 (16:32 +0100)
committerPhilipp Klaus <klaus@physik.uni-frankfurt.de>
Thu, 22 Jan 2015 15:32:12 +0000 (16:32 +0100)
s-curves/cpp_based-on-dabc-lib/unpacker.cxx

index a285a524d9a6a6ef2d8c8c66437e75a94cc31fbd..ccbf82afe4908a7b544a1eec9d3829ec1f2aaa78 100644 (file)
@@ -147,9 +147,21 @@ signed analyze_C0(hadaq::RawSubevent* sub, unsigned ix, unsigned framelen, unsig
   cout << "Run Number: " << sf.run_number << endl;
   #endif
 
-  if (sf.frame_length != 0x25) {
-    printf("The framelength should match 37 = 0x25\n");
-    return -1;
+  // validity checks for M-26:
+  bool valid = true;
+  if (sf.row >= 576) valid = false;
+  if (sf.sensor_id >= 2) valid = false;
+  if (sf.bank >= 4) valid = false;
+  if (sf.frame_length != 0x25) valid = false;
+  if (! valid) {
+    cout << "Something is wrong with this frame:" << endl;
+    cout << "Frame length: " << sf.frame_length << endl;
+    cout << "Sensor ID: " << sf.sensor_id << endl;
+    cout << "Threshold: " << sf.threshold << endl;
+    cout << "Bank: " << sf.bank << endl;
+    cout << "Row: " << sf.row << endl;
+    cout << "Run Number: " << sf.run_number << endl;
+    return ix + sf.frame_length;
     }
 
   if (prev_threshold == 0xFFFF) prev_threshold = 0xFFFE; // prevent first save_tree() call
@@ -178,8 +190,7 @@ signed analyze_C0(hadaq::RawSubevent* sub, unsigned ix, unsigned framelen, unsig
         }
       }
     }
-  ix += j;
-  return ix;
+  return ix + j;
   }
 
 
@@ -239,7 +250,7 @@ void save_tree() {
         }
       else
         {
-        pixelprob[i] = 0;
+        pixelprob[i] = 0.0;
         }
       }
     scurveTree->Fill();