Welcome to wrapit Discussions! #49
Replies: 3 comments 5 replies
-
Hi everyone! I'm Rajkumar, a Bachelor of Technology student specializing in Artificial Intelligence and Data Science. I'm excited to be here and connect with the community! My programming experience spans Fortran, C, C++, Java, Python, and Julia. I even had the amazing opportunity to contribute to the Fortran-lang organization's HTTP client package during Google Summer of Code 2023, enabling HTTP requests in Fortran. For Google Summer of Code 2024, I'm particularly interested in the "Julia Interoperating with HEP C++ Libraries" project. I'm eager to leverage my skills and enthusiasm to contribute to this valuable initiative. I'm looking forward to learning, engaging, and collaborating with all of you in this wonderful community! |
Beta Was this translation helpful? Give feedback.
-
Title: Correct way to store strings/array in ROOT files with Julia Hello everyone, I'm trying to store string data in a ROOT file. I came across the My question:
Here's a simple example illustrating the approach I'm considering: # Program to store strings in root file
using ROOT
f = ROOT.TFile!Open("string.root", "RECREATE")
t = ROOT.TTree("tree", "tree")
a = "xyz"
n = fill(length(a))
Branch(t, "n", n, 32000, 99)
Branch(t, "string[n]", a, 32000, 99)
Fill(t)
Write(t)
Close(f) I'd appreciate any insights or suggestions from the community on the best approach for storing strings effectively in ROOT files using Julia. Thank you |
Beta Was this translation helpful? Give feedback.
-
While attempting to address the first TODO item in the WrapIt development TODO list, which involves fixing issues indicated with
Error Message:
Steps to Reproduce:
Additional Information:
|
Beta Was this translation helpful? Give feedback.
-
👋 Welcome!
We’re using Discussions as a place to connect with other members of our community. We hope that you:
build together 💪.
To get started, comment below with an introduction of yourself and tell us about what you do with this community.
Beta Was this translation helpful? Give feedback.
All reactions