Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

podio-dump takes very long and prints errors #312

Open
Victor-Schwan opened this issue Jun 6, 2024 · 5 comments
Open

podio-dump takes very long and prints errors #312

Victor-Schwan opened this issue Jun 6, 2024 · 5 comments

Comments

@Victor-Schwan
Copy link

key4hep version: nightlies from 2024-06-06 but also occurred in other versions from the last month

  • OS version: ubuntu 22.04 LTS
  • Reproduced by: execute podio-dump status_v11_REC.edm4hep.root
  • Input: edm4hep_file.zip
  • Output:
datamodel model definitions stored in this file: edm4hep

Frame categories in this file:
Name                      Entries
----------------------  ---------
metadata                        1
events                          3
configuration_metadata          1
################################### events: 0 ####################################
Error in <TProtoClass::FindDataMember>: data member with index 0 is not found in class tuple<vector<edm4hep::TrackerHit>*,default_delete<vector<edm4hep::TrackerHit> > >
Error in <CreateRealData>: Cannot find data member # 0 of class tuple<vector<edm4hep::TrackerHit>*,default_delete<vector<edm4hep::TrackerHit> > > for parent edm4hep::MCRecoTrackerAssociationCollection!
Error in <TProtoClass::FindDataMember>: data member with index 1 is not found in class tuple<vector<edm4hep::TrackerHit>*,default_delete<vector<edm4hep::TrackerHit> > >
Error in <CreateRealData>: Cannot find data member # 1 of class tuple<vector<edm4hep::TrackerHit>*,default_delete<vector<edm4hep::TrackerHit> > > for parent edm4hep::MCRecoTrackerAssociationCollection!
Collections:
Name                                   ValueType                                    Size  ID
-------------------------------------  -----------------------------------------  ------  --------
ClupatraTracks                         edm4hep::Track                                  1  264d1493
ClupatraTrackSegments                  edm4hep::Track                                  0  c80f6454
DebugHits                              edm4hep::TrackerHitPlane                        0  c498ee0d
  • Problem: except for the thrown errors, the dumping takes about 90 seconds
  • Goal: Fix issue
@tmadlener
Copy link
Contributor

Are the 90 seconds repeatable? I.e. does it still happen on the second time around? I get quite a bit of delay the first time due to the cvmfs cache population, but it gtes down to (a still very slow) roughly 20 seconds on subsequent tries.

@jmcarcell
Copy link
Contributor

On lxplus I imagine... One way of helping with this is not to build with debug symbols, I think the difference is noticeable.

@tmadlener
Copy link
Contributor

Has the file been written with the exact same version of EDM4hep that has been used for reading? While, I see the same error when running podio-dump on it using the nightlies and my local stack, I cannot reproduce this if I produce a file and then dump it again in one stack

from podio import root_io, frame
from edm4hep import (
    TrackerHitPlaneCollection,
    MCRecoTrackerAssociationCollection,
    SimTrackerHitCollection,
)

hits = TrackerHitPlaneCollection()
for _ in range(3):
    hits.create()

simhits = SimTrackerHitCollection()
for _ in range(3):
    simhits.create()

rels = MCRecoTrackerAssociationCollection()
for i in range(3):
    rel = rels.create()
    rel.setWeight(i)
    rel.setSim(simhits[i])
    rel.setRec(hits[2 - i])

event = frame.Frame()
event.put(hits, "hits")
event.put(simhits, "simhits")
event.put(rels, "relations")

writer = root_io.Writer("tracker_hit_repro.edm4hep.root")
writer.write_frame(event, "events")

which I think should be a minimal reproducer (judging from the contents of the errors). But this just works for me:

$ podio-dump tracker_hit_repro.edm4hep.root 
input file: tracker_hit_repro.edm4hep.root

datamodel model definitions stored in this file: edm4hep

Frame categories in this file:
Name      Entries
------  ---------
events          1
################################### events: 0 ####################################
Collections:
Name       ValueType                            Size  ID
---------  ---------------------------------  ------  --------
hits       edm4hep::TrackerHitPlane                3  fb2c5a48
relations  edm4hep::MCRecoTrackerAssociation       3  8eb44c8d
simhits    edm4hep::SimTrackerHit                  3  25874f6b

Parameters:
Name    Type    Elements
------  ------  ----------

@Victor-Schwan
Copy link
Author

Using today's k4hep nightlies, I create and read (using podio-dump) an edm4hep file created with my steering scripts and one with your minimal reproducer script. The error does not occur using the minimal reproducer but still with my scripts. In my understanding, this excludes different versions of edm4hep as the cause.

@tmadlener
Copy link
Contributor

Thanks for testing. In that case it indeed looks like something that is not yet caught by the minimal reproducer.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants