File tree Expand file tree Collapse file tree
tutorials/analysis/dataframe Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44/// Usage of multithreading mode with random generators.
55///
66/// This tutorial illustrates how to make a thread-safe program with thread-local random number engines.
7- /// Using only one random number generator in a ROOT::EnableImplicitMT() mode is a common pitfal .
7+ /// Using only one random number generator in a ROOT::EnableImplicitMT() mode is a common pitfall .
88/// This pitfall creates race conditions resulting in a distorted random distribution.
99/// This example illustrates how to define thread-safe functions that generate random numbers and use them in an
1010/// RDataFrame computation graph.
1919#include <iostream>
2020#include <thread>
2121#include <random>
22- #include "TRandom3.h"
2322#include "TCanvas.h"
2423#include "ROOT/RDataFrame.hxx"
2524
You can’t perform that action at this time.
0 commit comments