@@ -136,11 +136,11 @@ void RawToDigitConverterSpec::run(framework::ProcessingContext& ctx)
136136 contDeadBeef == maxWarn ? fmt::format (" . {} such inputs in row received, stopping reporting" , contDeadBeef) : " " );
137137 }
138138 mOutputDigits .clear ();
139- ctx.outputs ().snapshot (o2::framework::Output{" CPV" , " DIGITS" , 0 , o2::framework::Lifetime::Timeframe }, mOutputDigits );
139+ ctx.outputs ().snapshot (o2::framework::Output{" CPV" , " DIGITS" , 0 }, mOutputDigits );
140140 mOutputTriggerRecords .clear ();
141- ctx.outputs ().snapshot (o2::framework::Output{" CPV" , " DIGITTRIGREC" , 0 , o2::framework::Lifetime::Timeframe }, mOutputTriggerRecords );
141+ ctx.outputs ().snapshot (o2::framework::Output{" CPV" , " DIGITTRIGREC" , 0 }, mOutputTriggerRecords );
142142 mOutputHWErrors .clear ();
143- ctx.outputs ().snapshot (o2::framework::Output{" CPV" , " RAWHWERRORS" , 0 , o2::framework::Lifetime::Timeframe }, mOutputHWErrors );
143+ ctx.outputs ().snapshot (o2::framework::Output{" CPV" , " RAWHWERRORS" , 0 }, mOutputHWErrors );
144144 return ; // empty TF, nothing to process
145145 }
146146 }
@@ -272,11 +272,11 @@ void RawToDigitConverterSpec::run(framework::ProcessingContext& ctx)
272272 if (skipTF) {
273273 // Send no digits
274274 mOutputDigits .clear ();
275- ctx.outputs ().snapshot (o2::framework::Output{" CPV" , " DIGITS" , 0 , o2::framework::Lifetime::Timeframe }, mOutputDigits );
275+ ctx.outputs ().snapshot (o2::framework::Output{" CPV" , " DIGITS" , 0 }, mOutputDigits );
276276 mOutputTriggerRecords .clear ();
277- ctx.outputs ().snapshot (o2::framework::Output{" CPV" , " DIGITTRIGREC" , 0 , o2::framework::Lifetime::Timeframe }, mOutputTriggerRecords );
277+ ctx.outputs ().snapshot (o2::framework::Output{" CPV" , " DIGITTRIGREC" , 0 }, mOutputTriggerRecords );
278278 // Send errors
279- ctx.outputs ().snapshot (o2::framework::Output{" CPV" , " RAWHWERRORS" , 0 , o2::framework::Lifetime::Timeframe }, mOutputHWErrors );
279+ ctx.outputs ().snapshot (o2::framework::Output{" CPV" , " RAWHWERRORS" , 0 }, mOutputHWErrors );
280280 return ;
281281 }
282282 }
@@ -305,9 +305,9 @@ void RawToDigitConverterSpec::run(framework::ProcessingContext& ctx)
305305 digitBuffer.clear ();
306306
307307 LOG (info) << " [CPVRawToDigitConverter - run] Sending " << mOutputDigits .size () << " digits in " << mOutputTriggerRecords .size () << " trigger records." ;
308- ctx.outputs ().snapshot (o2::framework::Output{" CPV" , " DIGITS" , 0 , o2::framework::Lifetime::Timeframe }, mOutputDigits );
309- ctx.outputs ().snapshot (o2::framework::Output{" CPV" , " DIGITTRIGREC" , 0 , o2::framework::Lifetime::Timeframe }, mOutputTriggerRecords );
310- ctx.outputs ().snapshot (o2::framework::Output{" CPV" , " RAWHWERRORS" , 0 , o2::framework::Lifetime::Timeframe }, mOutputHWErrors );
308+ ctx.outputs ().snapshot (o2::framework::Output{" CPV" , " DIGITS" , 0 }, mOutputDigits );
309+ ctx.outputs ().snapshot (o2::framework::Output{" CPV" , " DIGITTRIGREC" , 0 }, mOutputTriggerRecords );
310+ ctx.outputs ().snapshot (o2::framework::Output{" CPV" , " RAWHWERRORS" , 0 }, mOutputHWErrors );
311311}
312312// _____________________________________________________________________________
313313o2::framework::DataProcessorSpec o2::cpv::reco_workflow::getRawToDigitConverterSpec (bool askDISTSTF, bool isPedestal, bool useBadChannelMap, bool useGainCalibration)
0 commit comments