Skip to content

Commit 7be44fa

Browse files
committed
Fix: suppression of Digit::ROF was not accounted in raw->digits
1 parent 6936669 commit 7be44fa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

macro/run_rawdecoding_its.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ void run_rawdecoding_its(std::string inpName = "rawits.bin", // input binary dat
7373
}
7474
const auto& pixdata = chipData.getData();
7575
for (const auto& pix : pixdata) {
76-
digits.emplace_back(chipData.getChipID(), roFrame, pix.getRowDirect(), pix.getCol());
76+
digits.emplace_back(chipData.getChipID(), pix.getRowDirect(), pix.getCol());
7777
nrofdig++;
7878
}
7979

macro/run_rawdecoding_mft.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ void run_rawdecoding_mft(std::string inpName = "06282019_1854_output.bin", // in
7373
}
7474
const auto& pixdata = chipData.getData();
7575
for (const auto& pix : pixdata) {
76-
digits.emplace_back(chipData.getChipID(), roFrame, pix.getRowDirect(), pix.getCol());
76+
digits.emplace_back(chipData.getChipID(), pix.getRowDirect(), pix.getCol());
7777
nrofdig++;
7878
}
7979

0 commit comments

Comments
 (0)