Skip to content

Commit b411e91

Browse files
authored
Merge pull request #47621 from cramonal/CorrectUnpackertools
Small modification on CRC compuation for HGCAL unpacker
2 parents b98755b + 6accd25 commit b411e91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

EventFilter/HGCalRawToDigi/src/UnpackerTools.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
bool hgcal::econdCRCAnalysis(const uint64_t *header, const uint32_t pos, const uint32_t payloadLength) {
1111
//there needs to be at least the CRC word otherwise it can't be checked
1212
if (payloadLength == 0)
13-
return false;
13+
return true;
1414

1515
int index = 0;
1616
std::vector<uint32_t> data32b; // reading 32-bit words, input is 64b

0 commit comments

Comments
 (0)