Skip to content

Commit 0713b7f

Browse files
committed
DUMMY COMMIT: check distribute forwardEOS usage
1 parent e97d067 commit 0713b7f

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

Detectors/TPC/workflow/include/TPCWorkflow/TPCDistributeCMVSpec.h

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ class TPCDistributeCMVSpec : public o2::framework::Task
129129

130130
const auto tf = processing_helpers::getCurrentTF(pc);
131131
if (tf == std::numeric_limits<uint32_t>::max()) {
132+
LOGP(info, "Entering forwardEOSData() after receiving timeframe {}", tf);
132133
forwardEOSData(pc);
133134
return;
134135
}
@@ -222,7 +223,11 @@ class TPCDistributeCMVSpec : public o2::framework::Task
222223
}
223224
}
224225

225-
void endOfStream(o2::framework::EndOfStreamContext& ec) final { ec.services().get<o2::framework::ControlService>().readyToQuit(o2::framework::QuitRequest::Me); }
226+
void endOfStream(o2::framework::EndOfStreamContext& ec) final
227+
{
228+
LOGP(info, "Entering endOfStream()");
229+
ec.services().get<o2::framework::ControlService>().readyToQuit(o2::framework::QuitRequest::Me);
230+
}
226231

227232
/// Return data description for aggregated CMVs for a given lane
228233
static header::DataDescription getDataDescriptionCMV(const unsigned int lane)
@@ -358,6 +363,7 @@ class TPCDistributeCMVSpec : public o2::framework::Task
358363
continue;
359364
}
360365

366+
LOGP(info, "Forwarding CMV data in forwardEOSData()");
361367
forwardData(pc, o2::framework::Output{o2::header::gDataOriginTPC, mDataDescrOut[currentOutLane], header::DataHeader::SubSpecificationType{cru}}, cru, it, [&] { sendEmptyCMVOutput(pc, currentOutLane, cru); });
362368
}
363369
}

0 commit comments

Comments
 (0)