![]() |
Project
|
Mergers are DPL devices able to merge objects produced in parallel. These can be TObjects or custom object inheriting MergeInterface. Topologies of mergers can be created using the o2::mergers::MergerInfrastructureBuilder
class. To generate only one Merger, one can also use o2::mergers::MergerBuilder
. Mergers provide a handful of options which are listed in the include/Mergers/MergerConfig.h
file.
See the snippet from src/mergersTopologyExample.cxx
as a usage example:
It creates a 2-layer topology of Mergers, which will consume mergerInputs
and send merged object on the Output {{"main"}, "TST", "HISTO", 0 }
. The infrastructure will integrate the received differences and each 5 seconds it will merge and publish the merged object. It will consist of a full history of the data that the topology will have received.