We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
tuple
struct
Currently we use a std::tuple to store some metatdata related to collections:
std::tuple
podio/include/podio/utilities/RootHelpers.h
Lines 18 to 21 in 5afdefd
This makes it hard to read via julia and also from a maintainability point of view it would be nicer, if this was something like
struct CollectionWriteInfo { uint32_t collectionID; std::string dataType; bool isSubset; unsigned int schemaVersion; };
@peremato I suppose something along these lines should work?
The text was updated successfully, but these errors were encountered:
What about adding also the collection name? In this case you need only one branch for all information.
Sorry, something went wrong.
Yeah, I could add that. I have to check how we can deduplicate some parts, because that information is also stored via the CollectionIDTable.
Successfully merging a pull request may close this issue.
Currently we use a
std::tuple
to store some metatdata related to collections:podio/include/podio/utilities/RootHelpers.h
Lines 18 to 21 in 5afdefd
This makes it hard to read via julia and also from a maintainability point of view it would be nicer, if this was something like
@peremato I suppose something along these lines should work?
The text was updated successfully, but these errors were encountered: