bug fix on NonPileUprate

This commit is contained in:
splitPoleDAQ 2023-11-15 19:22:50 -05:00
parent 386e632198
commit eb178620f2

View File

@ -446,8 +446,8 @@ inline void Data::DecodeBuffer(bool fastDecode, int verbose){
// printf("%s | ch %d | %d %d \n", __func__, ch, LoopIndex[ch], DataIndex[ch]); // printf("%s | ch %d | %d %d \n", __func__, ch, LoopIndex[ch], DataIndex[ch]);
IsNotRollOverFakeAgg = true; IsNotRollOverFakeAgg = true;
}else{ }else{
// TriggerRate[ch] = 0; TriggerRate[ch] = 0;
// NonPileUpRate[ch] = 0; NonPileUpRate[ch] = 0;
continue; continue;
} }
@ -468,8 +468,8 @@ inline void Data::DecodeBuffer(bool fastDecode, int verbose){
double sec = dTime * tick2ns / 1e9; double sec = dTime * tick2ns / 1e9;
TriggerRate[ch] = (NumEventsDecoded[ch]-1)/sec; TriggerRate[ch] = (NumEventsDecoded[ch]-1)/sec;
//printf("%d %d| %d | %llu, %.3e | %.2f\n", indexStart, DataIndex[ch], NumEventsDecoded[ch], dTime, sec , TriggerRate[ch]); NonPileUpRate[ch] = (NumNonPileUpDecoded[ch]-1)/sec;
NonPileUpRate[ch] = (NumNonPileUpDecoded[ch])/sec; //printf("%d %d| %d %d | %llu, %.3e | %.2f, %.2f\n", indexStart, DataIndex[ch], NumEventsDecoded[ch], NumNonPileUpDecoded[ch], dTime, sec , TriggerRate[ch], NonPileUpRate[ch]);
}else{ // look in to the data in the memory, not just this agg. }else{ // look in to the data in the memory, not just this agg.