Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GraceDB Server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Michael Coughlin
GraceDB Server
Commits
c7f82a17
Commit
c7f82a17
authored
9 years ago
by
Branson Craig Stephens
Browse files
Options
Downloads
Patches
Plain Diff
Added Data_Integ to list of accepted parameters for trigger_duration
parent
3b30c7e2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gracedb/translator.py
+5
-1
5 additions, 1 deletion
gracedb/translator.py
with
5 additions
and
1 deletion
gracedb/translator.py
+
5
−
1
View file @
c7f82a17
...
...
@@ -633,7 +633,7 @@ def populateGrbEventFromVOEventFile(filename, event):
event
.
how_reference_url
=
v
.
get_How
().
get_Reference
()[
0
].
uri
# try to find a trigger_duration value
# Fermi uses Trig_Dur, while Swift uses Integ_Time
# Fermi uses Trig_Dur
or Data_Integ
, while Swift uses Integ_Time
# One or the other may be present, but not both
trigger_duration
=
None
try
:
...
...
@@ -644,6 +644,10 @@ def populateGrbEventFromVOEventFile(filename, event):
trigger_duration
=
findParam
(
v
,
''
,
'
Integ_Time
'
).
get_value
()
except
:
pass
try
:
trigger_duration
=
findParam
(
v
,
''
,
'
Data_Integ
'
).
get_value
()
except
:
pass
event
.
trigger_duration
=
trigger_duration
# try to find a trigger_id value
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment