TaskRunner.cxx on QC

Hi @bvonhall @pkonopka

Do you know which file runs the TaskRunner.cxx. I mean particularly, I want to know which file that runs the void TaskRunner::init(InitContext& iCtx) on the TaskRunner.cxx. Thank you!

Sincerely,
Zhaozhong Shi

Hello Zhaozhong!
The TaskRunner class inherits from o2::framework::Task, which is an API for user code in the Data Processing Layer and this is the class which declares the init() method. You can find it in O2/Framework/Core/include/Framework/Task.h (it is the AliceO2 repository). You can also see init() being invoked there.