Skip to content

Commit a678ce7

Browse files
committed
Do not send ROMode for GRPUpdated from CompressedDecodingTask
1 parent 0fe6814 commit a678ce7

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

Detectors/TOF/workflow/src/CompressedDecodingTask.cxx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ void CompressedDecodingTask::postData(ProcessingContext& pc)
6767

6868
static o2::parameters::GRPObject::ROMode roMode = o2::parameters::GRPObject::CONTINUOUS;
6969

70-
LOG(INFO) << "TOF: Sending ROMode= " << roMode << " to GRPUpdater";
71-
pc.outputs().snapshot(Output{o2::header::gDataOriginTOF, "ROMode", 0, Lifetime::Timeframe}, roMode);
70+
setFirstTFOrbit(Output{o2::header::gDataOriginTOF, "DIGITS", 0, Lifetime::Timeframe}, mInitOrbit);
71+
setFirstTFOrbit(Output{o2::header::gDataOriginTOF, "READOUTWINDOW", 0, Lifetime::Timeframe}, mInitOrbit);
7272

7373
mDecoder.clear();
7474

@@ -150,7 +150,6 @@ DataProcessorSpec getCompressedDecodingSpec(const std::string& inputDesc)
150150
std::vector<OutputSpec> outputs;
151151
outputs.emplace_back(o2::header::gDataOriginTOF, "DIGITS", 0, Lifetime::Timeframe);
152152
outputs.emplace_back(o2::header::gDataOriginTOF, "READOUTWINDOW", 0, Lifetime::Timeframe);
153-
outputs.emplace_back(o2::header::gDataOriginTOF, "ROMode", 0, Lifetime::Timeframe);
154153

155154
return DataProcessorSpec{
156155
"tof-compressed-decoder",

0 commit comments

Comments
 (0)