@@ -67,6 +67,7 @@ void DigitReader::run(ProcessingContext& pc)
6767 pc.outputs ().snapshot (Output{o2::header::gDataOriginTOF , " DIGITS" , 0 , Lifetime::Timeframe}, mDigits );
6868 pc.outputs ().snapshot (Output{o2::header::gDataOriginTOF , " READOUTWINDOW" , 0 , Lifetime::Timeframe}, mRow );
6969 pc.outputs ().snapshot (Output{o2::header::gDataOriginTOF , " PATTERNS" , 0 , Lifetime::Timeframe}, mPatterns );
70+ pc.outputs ().snapshot (Output{o2::header::gDataOriginTOF , " DIAFREQ" , 0 , Lifetime::Timeframe}, mDiagnostic );
7071 if (mUseMC ) {
7172 pc.outputs ().snapshot (Output{o2::header::gDataOriginTOF , " DIGITSMCTR" , 0 , Lifetime::Timeframe}, mLabels );
7273 }
@@ -94,6 +95,7 @@ DataProcessorSpec getDigitReaderSpec(bool useMC)
9495 std::vector<OutputSpec> outputs;
9596 outputs.emplace_back (o2::header::gDataOriginTOF , " DIGITS" , 0 , Lifetime::Timeframe);
9697 outputs.emplace_back (o2::header::gDataOriginTOF , " READOUTWINDOW" , 0 , Lifetime::Timeframe);
98+ outputs.emplace_back (o2::header::gDataOriginTOF , " DIAFREQ" , 0 , Lifetime::Timeframe);
9799 if (useMC) {
98100 outputs.emplace_back (o2::header::gDataOriginTOF , " DIGITSMCTR" , 0 , Lifetime::Timeframe);
99101 }
0 commit comments