Skip to content

Commit

Permalink
Give BX ID and orbit number as additinal details in comma detect warn…
Browse files Browse the repository at this point in the history
…ing message in uGMT unpacker
  • Loading branch information
thomreis committed Dec 15, 2015
1 parent e2191ef commit 5674854
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ namespace l1t {
}
// Detect and ignore comma events
if (raw_data_00_31 == 0x505050bc || raw_data_32_63 == 0x505050bc) {
edm::LogWarning("L1T|Muon") << "Comma detected in raw data stream. BX: " << bx << ", linkId: " << linkId << ", Raw data: 0x" << hex << setw(8) << setfill('0') << raw_data_32_63 << setw(8) << setfill('0') << raw_data_00_31 << dec << ". Skip.";
edm::LogWarning("L1T|Muon") << "Comma detected in raw data stream. Orbit number: " << block.amc().getOrbitNumber() << ", BX ID: " << block.amc().getBX() << ", BX: " << bx << ", linkId: " << linkId << ", Raw data: 0x" << hex << setw(8) << setfill('0') << raw_data_32_63 << setw(8) << setfill('0') << raw_data_00_31 << dec << ". Skip.";
continue;
}

Expand Down

0 comments on commit 5674854

Please sign in to comment.