-
I am having difficulties while printing the column data of the data frame defined inside the dataset.
Maybe @juanangp you got some insights on how to solve this? |
Beta Was this translation helpful? Give feedback.
Answered by
juanangp
Oct 13, 2023
Replies: 1 comment
-
I think the issue is that the dataSet has been built with multiThreading enabled, looking at some ROOT forums there is not much to do while using I suggest the following:
You should be able to do |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jgalan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think the issue is that the dataSet has been built with multiThreading enabled, looking at some ROOT forums there is not much to do while using
Display
with MT enabled.I suggest the following:
TRestDataSet::GenerateDataSet
(default be enabled by default)Import
e.g.Import(const std::string& fileName, bool enableMT = true)
You should be able to do
Display
with a dataset which has been generated using MT enabled but it is imported with MT disabled.