We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
For ROOT to write an object to a root file it needs a efulat constructor for the streamer function.
That is if you are making your own class MyClass the constructor
MyClass() = default;
Must be declared in the header class definition. Older C++ may have written this as
MyClass(){};