Skip to content
Snippets Groups Projects

make packing configuration simpler

Merged Sevda Esen requested to merge sevda-simpler-packing into master
Compare and
71 files
+ 32649
35891
Compare changes
  • Side-by-side
  • Inline
Files
71
@@ -15,9 +15,9 @@ import cppyy
not_found = cppyy.bind_object(0, cppyy.gbl.DataObject)
# These locations do not exist in old brunel outputs or any file produced
# before LHCb!3622, for the moment ignore the errors in unpacking checks.
# before 07.2022 for the moment ignore the errors in unpacking checks.
# until we have some versioning of the reco locations
UnexpectedReco = ["MuonTracks"]
UnexpectedReco = ["MuonTracks", "Rec/Summary"]
def check_persistreco(TES, locations, process="Hlt2", N=0):
@@ -42,7 +42,7 @@ def check_persistreco(TES, locations, process="Hlt2", N=0):
print(
"Persistreco ERROR for pass through line. RecSummary not persisted."
)
elif len(unpacked) < N and not any(x in loc for x in Unexpected):
elif unpacked.size() < N and not any(x in loc for x in Unexpected):
if "Vertex" not in loc: ## Do not expect N_TURBO+ vertices
print("Persistreco ERROR for pass through line. ", loc,
" has only ", len(unpacked), " entries.")
" has only ", unpacked.size(), " entries.")
Loading