@@ -118,8 +118,11 @@ class FD3DPLDigitizerTask : public o2::base::BaseDPLDigitizer
118118 pc.outputs ().snapshot (Output{" FD3" , " DIGITSBC" , 0 }, mDigitsBC );
119119 pc.outputs ().snapshot (Output{" FD3" , " DIGITSCH" , 0 }, mDigitsCh );
120120 pc.outputs ().snapshot (Output{" FD3" , " TRIGGERINPUT" , 0 }, mDigitsTrig );
121- if (pc.outputs ().isAllowed ({" FD3" , " DIGITLBL" , 0 })) {
122- pc.outputs ().snapshot (Output{" FD3" , " DIGITLBL" , 0 }, mLabels );
121+ // if (pc.outputs().isAllowed({"FD3", "DIGITLBL", 0})) {
122+ // pc.outputs().snapshot(Output{"FD3", "DIGITLBL", 0}, mLabels);
123+ // }
124+ if (pc.outputs ().isAllowed ({" FD3" , " DIGITSMCTR" , 0 })) {
125+ pc.outputs ().snapshot (Output{" FD3" , " DIGITSMCTR" , 0 }, mLabels );
123126 }
124127 LOG (info) << " FD3: Sending ROMode= " << mROMode << " to GRPUpdater" ;
125128 pc.outputs ().snapshot (Output{" FD3" , " ROMode" , 0 }, mROMode );
@@ -155,10 +158,10 @@ o2::framework::DataProcessorSpec getFD3DigitizerSpec(int channel, bool mctruth)
155158 outputs.emplace_back (" FD3" , " DIGITSCH" , 0 , Lifetime::Timeframe);
156159 outputs.emplace_back (" FD3" , " TRIGGERINPUT" , 0 , Lifetime::Timeframe);
157160 if (mctruth) {
158- outputs.emplace_back (" FD3" , " DIGITLBL" , 0 , Lifetime::Timeframe);
161+ // outputs.emplace_back("FD3", "DIGITLBL", 0, Lifetime::Timeframe);
162+ outputs.emplace_back (" FD3" , " DIGITSMCTR" , 0 , Lifetime::Timeframe);
159163 }
160164 outputs.emplace_back (" FD3" , " ROMode" , 0 , Lifetime::Timeframe);
161- outputs.emplace_back (" FD3" , " DIGITSMCTR" , 0 , Lifetime::Timeframe);
162165
163166 return DataProcessorSpec{
164167 " FD3Digitizer" ,
0 commit comments