You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 17, 2023. It is now read-only.
I created a test in k4MarlinWrapper to test conversion of collections from EDM4hep to LCIO to EDM4hep.
When converting Tracks, these can have other Tracks linked to it. I test that these linked Tracks remain in the conversion between EDM4hep to LCIO.
But when converting from LCIO to EDM4hep these linked Tracks are missing in the resulting EDM4hep collection. This is probably true for other collections that have linked collections.
The conversion is done using k4LCIOConverter like so:
podio::CollectionIDTable* id_table = new podio::CollectionIDTable();
k4LCIOConverter* lcio_converter = new k4LCIOConverter(id_table);
lcio_converter->set(the_event);
T* mycoll = dynamic_cast<T*>(lcio_converter->getCollection(lcio_name));
The text was updated successfully, but these errors were encountered:
I created a test in k4MarlinWrapper to test conversion of collections from EDM4hep to LCIO to EDM4hep.
When converting Tracks, these can have other Tracks linked to it. I test that these linked Tracks remain in the conversion between EDM4hep to LCIO.
But when converting from LCIO to EDM4hep these linked Tracks are missing in the resulting EDM4hep collection. This is probably true for other collections that have linked collections.
The conversion is done using k4LCIOConverter like so:
The text was updated successfully, but these errors were encountered: