Skip to content
Closed
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
10 changes: 10 additions & 0 deletions Detectors/Raw/src/RawFileReaderWorkflow.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,16 @@ void RawReaderSpecs::run(o2f::ProcessingContext& ctx)
mLoopsDone, link.origin.as<std::string>(), link.description.as<std::string>(), link.subspec);
}

// Update TimingInfo with the correct information so that we can
// create messages with the correct value when using DataAllocator
auto& timingInfo = ctx.services().get<TimingInfo>();
timingInfo.firstTFOrbit = firstOrbit;
timingInfo.creation = creationTime;
timingInfo.tfCounter = mTFCounter;
// The one from the inputs are proabably ok?
// timingInfo.runNumber = runNumber;
// timingInfo.timeslice = timeslice;

// send sTF acknowledge message
unsigned stfSS[2] = {0, 0xccdb};
for (int iss = 0; iss < 2; iss++) {
Expand Down