File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -140,8 +140,12 @@ void DigitsQcTask::startOfCycle()
140140void DigitsQcTask::monitorData (o2::framework::ProcessingContext& ctx)
141141{
142142 mNbDigitTF ->Fill (0.5 , 1 .);
143- auto digits = o2::mid::specs::getData (ctx, " digits" , o2::mid::EventType::Standard);
144- auto rofs = o2::mid::specs::getRofs (ctx, " digits" , o2::mid::EventType::Standard);
143+
144+ auto digits = ctx.inputs ().get <gsl::span<o2::mid::ColumnData>>(" digits" );
145+ auto rofs = ctx.inputs ().get <gsl::span<o2::mid::ROFRecord>>(" digits_rof" );
146+
147+ // auto digits = o2::mid::specs::getData(ctx, "digits", o2::mid::EventType::Standard);
148+ // auto rofs = o2::mid::specs::getRofs(ctx, "digits", o2::mid::EventType::Standard);
145149
146150 std::array<unsigned long int , 4 > evtSizeB{};
147151 std::array<unsigned long int , 4 > evtSizeNB{};
You can’t perform that action at this time.
0 commit comments