Skip to content

Commit

Permalink
Fix testing for TRandomPoisson (#1058)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpnrlz authored Feb 13, 2024
1 parent c894ff6 commit 444376d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion root/dataframe/test_stringfiltercolumn.C
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ void getTracks(FourVectors& tracks) {
auto nPart = R.Poisson(5);
tracks.clear();
tracks.reserve(nPart);
for (int i = 0; i < nPart; ++i) {
for (int i = 0; i < static_cast<int>(nPart); ++i) {
double px = R.Gaus(0,10);
double py = R.Gaus(0,10);
double pt = sqrt(px*px +py*py);
Expand Down

0 comments on commit 444376d

Please sign in to comment.