Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions Modules/FOCAL/src/TestbeamRawTask.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ void TestbeamRawTask::monitorData(o2::framework::ProcessingContext& ctx)
auto payloadsize = o2::raw::RDHUtils::getMemorySize(rdh) - o2::raw::RDHUtils::getHeaderSize(rdh);
auto fee = static_cast<int>(o2::raw::RDHUtils::getFEEID(rdh));
ILOG(Debug, Support) << "Next RDH: " << ENDM;
stringstream ss;
std::stringstream ss;
ss << "Found fee 0x" << std::hex << fee << std::dec << " (System " << (fee == 0xcafe ? "Pads" : "Pixels") << ")";
ILOG(Debug, Support) << ss.str() << ENDM;
ILOG(Debug, Support) << "Found trigger BC: " << o2::raw::RDHUtils::getTriggerBC(rdh) << ENDM;
Expand Down Expand Up @@ -594,7 +594,7 @@ void TestbeamRawTask::monitorData(o2::framework::ProcessingContext& ctx)
} else {
ILOG(Debug, Support) << "New HBF or Timeframe" << ENDM;
currentfee = o2::raw::RDHUtils::getFEEID(rdh);
stringstream ss;
std::stringstream ss;
ss << "Using FEE ID: 0x" << std::hex << currentfee << std::dec;
ILOG(Debug, Support) << ss.str() << ENDM;
}
Expand Down Expand Up @@ -649,8 +649,7 @@ void TestbeamRawTask::processPadEvent(gsl::span<const o2::focal::PadGBTWord> pad
std::array<double, PAD_ASICS> kTOTsum = { 0 };
std::array<double, PAD_ASICS> kADCsum = { 0 };
double cmn = 0;
std:
array<double, 66> kADCForCMN = { 0 };
std::array<double, 66> kADCForCMN = { 0 };
for (int iasic = 0; iasic < PAD_ASICS; iasic++) {
const auto& asic = eventdata[iasic].getASIC();
ILOG(Debug, Support) << "ASIC " << iasic << ", Header 0: " << asic.getFirstHeader() << ENDM;
Expand Down