Skip to content

Commit 35fb6d9

Browse files
committed
use EOS data description and set run number in DPL data header for EOS message
1 parent 96aa2b4 commit 35fb6d9

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/common/SubTimeFrameDPL.cxx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,8 +276,11 @@ void StfToDplAdapter::sendEosToDpl()
276276
o2::framework::DataProcessingHeader lDplHdr;
277277
lDplHdr.creation = std::chrono::time_point_cast<std::chrono::milliseconds>(std::chrono::system_clock::now()).time_since_epoch().count();
278278

279+
o2::header::DataHeader lDplDataHdr(o2::header::gDataDescriptionEos, o2::header::gDataOriginAny, 0, 0);
280+
lDplDataHdr.runNumber = DataDistLogger::sRunNumber;
281+
279282
const auto lDoneStack = o2::header::Stack(
280-
o2::header::DataHeader(o2::header::gDataDescriptionEos, o2::header::gDataOriginAny, 0, 0),
283+
lDplDataHdr,
281284
lDplHdr,
282285
lDplExitHdr
283286
);

0 commit comments

Comments
 (0)