We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35869b2 commit 66611baCopy full SHA for 66611ba
1 file changed
ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx
@@ -212,7 +212,12 @@ struct OnTheFlyDecayer {
212
}
213
};
214
215
+struct OnTheFlyDecayerExtensionSpawner {
216
+ Spawns<aod::McParticles_001Extension> spawnMcParticlesExtensions;
217
+ void init(InitContext const&) {}
218
+};
219
+
220
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
221
{
- return WorkflowSpec{adaptAnalysisTask<OnTheFlyDecayer>(cfgc)};
222
+ return WorkflowSpec{adaptAnalysisTask<OnTheFlyDecayer>(cfgc), adaptAnalysisTask<OnTheFlyDecayerExtensionSpawner>(cfgc)};
223
0 commit comments