Skip to content
Snippets Groups Projects

Draft: extra_persistreco

Closed Sevda Esen requested to merge sevda-extra-persistreco into master
4 unresolved threads

Add a new option to lines to specify extra_persistreco locations. This allows to have line specific persistreco locations.

For the moment only VeloTracks and CaloClusters/Digits can be added. The limitation comes from the cloner algorithms.

Partially addressing #154 (closed)

To be tested with LHCb!3781 (closed)

Edited by Sevda Esen

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
47 48 # We define the basic building blocks for this module, following
48 49 # https://lhcbdoc.web.cern.ch/lhcbdoc/moore/master/tutorials/hlt2_line.html#code-design-guidelines
49 50 def _protons_for_charm():
50 pvs = make_pvs()
51 #pvs = make_pvs()
  • 36 36 if key in to_be_persisted: prdict[key] = val
    37 37
    38 38 return prdict
    39
    40
    41 def extra_persistreco_line_outputs():
    42 """Return a dict of data handles that define reconstruction to be persisted."""
    43 objs = reconstruction()
    44
    45 prdict = {}
    46 to_be_persisted = [k for k in extra_persisted_locations().keys()]
    47
    48 for key, val in objs.items():
    49 if val:
    50 if key == "PVs_v1": key = "PVs"
  • 243 243 velo_tracks = make_velo_tracks()
    244 244 velo_tracks_v1 = fromPrVeloTracksV1TracksMerger(
    245 245 InputTracksLocation1=velo_tracks["Pr"],
    246 InputTracksLocation2=velo_tracks["Pr::backward"]).OutputTracksLocation
    246 InputTracksLocation2=velo_tracks["Pr::backward"],
    247 outputs={
    248 'OutputTracksLocation': persisted_location('VeloTracks')
    • Does this mean this needs to be added to all outputs that one wants to persist? So far we never cared about an explicit output location.

    • Author Contributor

      We already do this for standard reco locations that are persisted.

      It depends a bit how these extra objects are intended to be used. In principle, this is only needed if we want to be able to explicitly unpack them later.

    • Please register or sign in to reply
  • mentioned in issue DaVinci#40 (closed)

  • Sevda Esen marked this merge request as draft

    marked this merge request as draft

  • mentioned in issue #487 (closed)

  • closed

  • Please register or sign in to reply
    Loading