We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38375f8 commit 2a3c9a9Copy full SHA for 2a3c9a9
root/dataframe/test_readTotemNtuple.C
@@ -22,9 +22,14 @@ int test_readTotemNtuple() {
22
*count2;
23
24
// Jitted filter with multi-dotted branch name
25
+ // In debug mode RDataFrame warns when it needs to copy collection elements for reading
26
+ // Ignore the warnings which are not important for this test
27
+ auto previousEIL = gErrorIgnoreLevel;
28
+ gErrorIgnoreLevel = kError;
29
std::cout << "Jitted filter, multi-dotted name:" << std::endl;
30
auto count3 = d.Filter("cout << par_patterns_rp_0.u.w << endl; return true;").Count();
31
*count3;
32
+ gErrorIgnoreLevel = previousEIL;
33
34
return 0;
35
}
0 commit comments