Add more fields to parse GRB voevents; Fixes #154
Finds trigger_id by looking at several different fields now. Added some additional fields to find trigger_duration
Merge request reports
Activity
added 1 commit
- 0a7b9fbf - Changed order for trigger ids so that best ones are first
@tanner.prestegard Take a look at this and let me know if we need to make any changes.
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.
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.
added 18 commits
-
1f30c140...a7472889 - 17 commits from branch
lscsoft:master
- 860ef346 - Add more fields to parse GRB voevents; Fixes #154 (closed)
-
1f30c140...a7472889 - 17 commits from branch