Fill n-tuples in distinct workers.
This tutorial illustrates the basics of how it's possible with ROOT to offload heavy operations on multiple threads and how it's possible to write simultaneously multiple files. The operation performed in this case is the creation of random gaussian numbers. NOTE: this code can be executed in a macro, ACLiC'ed or not, but not yet at the command line prompt.
const UInt_t nNumbers = 20000000U;
const auto workSize = nNumbers / nWorkers;
{
}
Int_t mt101_fillNtuples()
{
TFile ofile(
"mp101_singleCore.root",
"RECREATE");
TNtuple randomNumbers(
"singleCore",
"Random Numbers",
"r");
randomNumbers.Write();
ofile.Close();
auto workItem = [](
UInt_t workerID) {
TFile ofile(
Form(
"mt101_multiCore_%u.root", workerID),
"RECREATE");
TNtuple workerRandomNumbers(
"multiCore",
"Random Numbers",
"r");
fillRandom(workerRandomNumbers, workerRndm, workSize);
workerRandomNumbers.Write();
return 0;
};
std::vector<std::thread> workers;
workers.emplace_back(workItem, workerID);
}
for (auto && worker : workers) worker.join();
return 0;
}
- Author
- Danilo Piparo
Definition in file mt101_fillNtuples.C.