File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 3333 "id" : " digits" ,
3434 "active" : " true" ,
3535 "machines" : [],
36- "query" : " digits:MID/DATA;digits_rof:MID/DATAROF" ,
36+ "query" : " digits:MID/DATA/0 ;digits_rof:MID/DATAROF/0 " ,
3737 "samplingConditions" : [
3838 {
3939 "condition" : " random" ,
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