-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for reading Fermi/gbm fits file in Eventlist.read #894
base: main
Are you sure you want to change the base?
Conversation
254ed23
to
5d19a72
Compare
|
||
time = hdulist[2].data.field("TIME") | ||
channels = hdulist[2].data.field("PHA") | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
currently this only read fermi/gbm TTE data
from stingray.events import EventList | ||
|
||
evt = EventList(time, energy, header) | ||
evt.trigtime = trigtime |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for now i just associated trigtime
with EventList
, let me know if anything else needs to be done.
@@ -627,6 +634,14 @@ def read(cls, filename, fmt=None, rmf_file=None, **kwargs): | |||
if fits_ext in get_file_extension(filename).lower(): | |||
fmt = "hea" | |||
break | |||
|
|||
source = kwargs.pop("source", None) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to detect the fermi/gbm files i used a new keyword source
fixes #614
@matteobachetti @dhuppenkothen