Skip to content

Commit

Permalink
Replace "neutrino_time" with "neutrino_time_utc"
Browse files Browse the repository at this point in the history
  • Loading branch information
justinvasel committed Nov 18, 2024
1 parent 3a1714e commit c98ff8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snews_cs/snews_coinc.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def _check_coinc_in_subgroups(self, message):
temp_cache = pd.concat([self.cache, message_as_cache], ignore_index=True)
# drop dublicates of detector name and nu time
temp_cache = temp_cache.drop_duplicates(
subset=["detector_name", "neutrino_time"]
subset=["detector_name", "neutrino_time_utc"]
)
# create a new time delta
temp_cache["neutrino_time_delta"] = np_datetime_delta_sec(
Expand Down

0 comments on commit c98ff8b

Please sign in to comment.