Skip to content
Snippets Groups Projects

Add more fields to parse GRB voevents; Fixes #154

Merged Brandon Piotrzkowski requested to merge brandon.piotrzkowski/gracedb:grbfields into master
1 unresolved thread

Finds trigger_id by looking at several different fields now. Added some additional fields to find trigger_duration

Edited by Brandon Piotrzkowski

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
659 660
660 661 # try to find a trigger_id value
661 662 trigger_id = None
662 try:
663 trigger_id = findParam(v, '', 'TrigID').get_value()
664 except:
665 pass
663 trigger_id_params = ['TrigID', 'Trans_Num', 'EventID']
664 for param in trigger_id_params:
665 if (param in VOEvent_params):
666 trigger_id = findParam(v, "", param).get_value()
  • @brandon.piotrzkowski, thanks for putting this together. I added one suggestion inline. Have you done any testing? If we can coordinate on this, I can set up a gracedb dev server with this code for an hour or so, and you can submit a few events to make sure it is working as expected.

  • added 1 commit

    • 1f30c140 - Added break when finding trigger_id

    Compare with previous version

  • I haven't done any testing yet since I wasn't quite sure how to do it. I have an idea of a few example events to upload so let me know when you can set up a server

  • I need to define a specific period of time for this testing because I can't leave one of my dev servers untouched for days - I need to use it for other development. Please pick a day and time when I can set a server up for 1 hour for you to test on. I will try to be available on chat during this time so we can make any necessary tweaks (if needed) and iterate rapidly.

  • Does 12pm central work tomorrow work or is that too close to lunch? I have a lot of flexibility right now so can move it forward or backwards a number of hours.

  • Sure, that works. I'll ping you on chat around then once it's all set up.

  • Brandon Piotrzkowski unmarked as a Work In Progress

    unmarked as a Work In Progress

  • added 18 commits

    Compare with previous version

  • Okay I rebased and squashed all the commits down to one.

  • Please register or sign in to reply
    Loading