18const UInt_t nNumbers = 20000000U;
24const auto workSize = nNumbers / nWorkers;
30 ntuple.Fill(rndm.
Gaus());
43 TFile ofile(
"mt101_singleCore.root",
"RECREATE");
44 TNtuple randomNumbers(
"singleCore",
"Random Numbers",
"r");
45 fillRandom(randomNumbers, rndm, nNumbers);
46 randomNumbers.Write();
56 auto workItem = [](
UInt_t workerID) {
59 TFile ofile(
Form(
"mt101_multiCore_%u.root", workerID),
"RECREATE");
60 TNtuple workerRandomNumbers(
"multiCore",
"Random Numbers",
"r");
61 fillRandom(workerRandomNumbers, workerRndm, workSize);
62 workerRandomNumbers.Write();
67 std::vector<std::thread> workers;
70 for (
auto workerID :
ROOT::
TSeqI(nWorkers)) {
71 workers.emplace_back(workItem, workerID);
75 for (
auto &&worker : workers)
char * Form(const char *fmt,...)
Formats a string in a circular formatting buffer.
A ROOT file is an on-disk file, usually with extension .root, that stores objects in a file-system-li...
A simple TTree restricted to a list of float variables only.
Random number generator class based on M.
Double_t Gaus(Double_t x, Double_t mean, Double_t sigma)
Gauss.
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...
void EnableThreadSafety()
Enable support for multi-threading within the ROOT code in particular, enables the global mutex to ma...