Skip to content

Commit f58b0ea

Browse files
authored
Don't rely on O2 for std pollution (#1980)
1 parent b1ec2ec commit f58b0ea

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

Modules/FOCAL/src/TestbeamRawTask.cxx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ void TestbeamRawTask::monitorData(o2::framework::ProcessingContext& ctx)
545545
auto payloadsize = o2::raw::RDHUtils::getMemorySize(rdh) - o2::raw::RDHUtils::getHeaderSize(rdh);
546546
auto fee = static_cast<int>(o2::raw::RDHUtils::getFEEID(rdh));
547547
ILOG(Debug, Support) << "Next RDH: " << ENDM;
548-
stringstream ss;
548+
std::stringstream ss;
549549
ss << "Found fee 0x" << std::hex << fee << std::dec << " (System " << (fee == 0xcafe ? "Pads" : "Pixels") << ")";
550550
ILOG(Debug, Support) << ss.str() << ENDM;
551551
ILOG(Debug, Support) << "Found trigger BC: " << o2::raw::RDHUtils::getTriggerBC(rdh) << ENDM;
@@ -594,7 +594,7 @@ void TestbeamRawTask::monitorData(o2::framework::ProcessingContext& ctx)
594594
} else {
595595
ILOG(Debug, Support) << "New HBF or Timeframe" << ENDM;
596596
currentfee = o2::raw::RDHUtils::getFEEID(rdh);
597-
stringstream ss;
597+
std::stringstream ss;
598598
ss << "Using FEE ID: 0x" << std::hex << currentfee << std::dec;
599599
ILOG(Debug, Support) << ss.str() << ENDM;
600600
}
@@ -649,8 +649,7 @@ void TestbeamRawTask::processPadEvent(gsl::span<const o2::focal::PadGBTWord> pad
649649
std::array<double, PAD_ASICS> kTOTsum = { 0 };
650650
std::array<double, PAD_ASICS> kADCsum = { 0 };
651651
double cmn = 0;
652-
std:
653-
array<double, 66> kADCForCMN = { 0 };
652+
std::array<double, 66> kADCForCMN = { 0 };
654653
for (int iasic = 0; iasic < PAD_ASICS; iasic++) {
655654
const auto& asic = eventdata[iasic].getASIC();
656655
ILOG(Debug, Support) << "ASIC " << iasic << ", Header 0: " << asic.getFirstHeader() << ENDM;

0 commit comments

Comments
 (0)