TreeData does not produce a Bool_t in the output tree #30
-
I'm hitting an issue where I have a missing variable in my output tree.
I have tried cleaning aux files and rerunning but no joy. Cheers, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This is true, TreeData does not take bools (I read somewhere once that they make a mess of the cache due to being 1bit fitting into 8bit space, probably it is not a big issue though) You can just make your variable a Short_t or Int_t type and be able to the same thing as if it was a bool. |
Beta Was this translation helpful? Give feedback.
This is true, TreeData does not take bools (I read somewhere once that they make a mess of the cache due to being 1bit fitting into 8bit space, probably it is not a big issue though) You can just make your variable a Short_t or Int_t type and be able to the same thing as if it was a bool.
If it is important to have bools these can be added...