Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
SeverinDiederichs committed Feb 21, 2025
1 parent 9e63a85 commit caa1b36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/AdePT/core/AsyncAdePTTransport.icc
Original file line number Diff line number Diff line change
Expand Up @@ -270,10 +270,10 @@ void AsyncAdePTTransport<IntegrationLayer>::Flush(G4int threadId, G4int eventId)
for (auto it = range.first; it != range.second; ++it) {
// important sanity check: thread should only process its own hits and only from the current event
if (it->threadId != threadId)
std::err << "Error, threadId doesn't match it->threadId " << it->threadId << " threadId " << threadId
std::cerr << "Error, threadId doesn't match it->threadId " << it->threadId << " threadId " << threadId
<< std::endl;
if (it->fEventId != eventId) {
std::err << "Error, eventId doesn't match it->fEventId " << it->fEventId << "eventId " << eventId
std::cerr << "Error, eventId doesn't match it->fEventId " << it->fEventId << "eventId " << eventId
<< " num hits to be processed " << (range.second - range.first) << " dataOnBuffer " << dataOnBuffer
<< "state : " << static_cast<unsigned int>(fEventStates[threadId].load(std::memory_order_acquire))
<< std::endl;
Expand Down

0 comments on commit caa1b36

Please sign in to comment.